Files
docker/web/Dockerfile
T
2019-09-14 23:57:48 +00:00

8 lines
131 B
Docker

FROM httpd
#debian
COPY ./httpd.conf /usr/local/apache2/conf/httpd.conf
RUN mkdir -p /var/www/html
VOLUME /var/www/html
EXPOSE 80