speedtest/Dockerfile

8 lines
204 B
Docker

FROM php:5.6-apache
EXPOSE 80
WORKDIR /var/www/html/
COPY . /var/www/html
RUN cp -a example6.html index.html \
&& ln -s /var/www/html /var/www/html/speedtest
CMD ["/usr/local/bin/apache2-foreground"]