Update sol-auth to amd64 image

This commit is contained in:
Ruben Hensen
2024-12-15 23:33:08 +01:00
parent 68e6834cca
commit 4895412569
2 changed files with 14 additions and 1 deletions
+13
View File
@@ -0,0 +1,13 @@
FROM httpd:2.4-bullseye
RUN apt-get update && \
apt-get install --no-install-recommends -y \
ca-certificates libapache2-mod-auth-openid
RUN touch /tmp/mod_auth_openid.db && chown www-data /tmp/mod_auth_openid.db
RUN mkdir /config
RUN touch /config/httpd.conf
RUN rm /usr/local/apache2/conf/httpd.conf
RUN ln -s /config/httpd.conf /usr/local/apache2/conf/httpd.conf
# how to build: docker build . -t hebury/sol-auth:2.3
# how to push: docker push hebury/sol-auth:2.3
# do not remember how to build for arm atm.