speedtest/Dockerfile

7 lines
166 B
Docker
Raw Normal View History

2019-04-20 15:37:13 +00:00
FROM php:7.3.1-apache
EXPOSE 80
WORKDIR /var/www/html/
COPY . /var/www/html
2017-06-23 17:39:36 +00:00
RUN ln -s /var/www/html /var/www/html/speedtest
CMD ["/usr/local/bin/apache2-foreground"]