This repository has been archived on 2020-02-15. You can view files and clone it, but cannot push or open issues or pull requests.
ldap-forward-auth/Dockerfile
2020-02-01 11:49:28 +00:00

13 lines
202 B
Docker

FROM httpd:alpine
RUN mkdir /srv/www \
&& touch /srv/www/index.html
COPY httpd.conf /usr/local/apache2/conf/httpd.conf
COPY entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]
EXPOSE 80