view Dockerfile @ 3139:bc0ef78bb07a

requestKey uses POST to avoid cache
author Nicholas Jillings <nicholas.jillings@mail.bcu.ac.uk>
date Tue, 16 Mar 2021 21:02:40 +0000
parents
children
line wrap: on
line source
FROM php:8-apache

RUN a2enmod rewrite
RUN mv "$PHP_INI_DIR/php.ini-development" "$PHP_INI_DIR/php.ini"

COPY ./apache/000-default.conf /etc/apache2/sites-available/000-default.conf

EXPOSE 80