mirror of
https://github.com/kanidm/kanidm.git
synced 2025-02-23 20:47:01 +01:00
* fighting weird build issues * labels are better outside * ugh that stupid linter * why do you always lint on me * neat * adding comments
14 lines
315 B
Docker
14 lines
315 B
Docker
FROM ubuntu/apache2:latest
|
|
|
|
RUN apt-get update
|
|
RUN apt-get install -y \
|
|
libapache2-mod-auth-openidc \
|
|
apache2-utils
|
|
|
|
RUN a2enmod auth_openidc
|
|
RUN a2enmod ssl
|
|
RUN rm /etc/apache2/sites-enabled/000-default.conf
|
|
COPY index.html /var/www/html/index.html
|
|
COPY oauth2.conf /etc/apache2/sites-enabled/oauth2.conf
|
|
|