FROM reg.cadoles.com/proxy_cache/library/alpine:edge #FROM reg.cadoles.com/proxy_cache/library/httpd:alpine3.18 # Adding testing repo RUN echo "https://dl-cdn.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories RUN apk update && apk add apache-mod-auth-openidc COPY conf.d/mod-auth-openidc.conf /etc/apache2/conf.d/mod-auth-openidc.conf COPY conf.d/default-vhost.conf /etc/apache2/conf.d/default-vhost.conf COPY scripts/httpd-foreground /usr/local/bin/ CMD ["httpd-foreground"]