This repository has been archived on 2019-04-13. You can view files and clone it, but cannot push or open issues or pull requests.
httpd-ldap/Dockerfile
2019-04-12 12:27:43 +00:00

11 lines
199 B
Docker

FROM httpd:alpine
RUN mkdir /srv/www
COPY assets /usr/local/apache2/conf/assets
COPY httpd.conf /usr/local/apache2/conf/httpd.conf
COPY entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]