Mercurial > hg > webaudioevaluationtool
annotate Dockerfile @ 3140:7180d6a2a271
Add super basic web scraper to collect remote tests
author | Nicholas Jillings <nicholas.jillings@mail.bcu.ac.uk> |
---|---|
date | Wed, 24 Mar 2021 17:07:59 +0000 |
parents | bc0ef78bb07a |
children |
rev | line source |
---|---|
nicholas@3139 | 1 FROM php:8-apache |
nicholas@3139 | 2 |
nicholas@3139 | 3 RUN a2enmod rewrite |
nicholas@3139 | 4 RUN mv "$PHP_INI_DIR/php.ini-development" "$PHP_INI_DIR/php.ini" |
nicholas@3139 | 5 |
nicholas@3139 | 6 COPY ./apache/000-default.conf /etc/apache2/sites-available/000-default.conf |
nicholas@3139 | 7 |
nicholas@3139 | 8 EXPOSE 80 |