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

13 lines
230 B
Docker
Raw Normal View History

2019-12-28 11:43:56 +01:00
FROM httpd:alpine
RUN mkdir /srv/www \
&& touch /srv/www/index.html /srv/www/user /srv/www/mail
2019-12-28 11:43:56 +01:00
COPY httpd.conf /usr/local/apache2/conf/httpd.conf
COPY entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]
2020-02-01 12:49:28 +01:00
EXPOSE 80