diff --git a/Dockerfile b/Dockerfile index 71c06b8..9eeb2ba 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,5 +3,8 @@ FROM php:7.2-apache # Use the default production configuration RUN mv "$PHP_INI_DIR/php.ini-production" "$PHP_INI_DIR/php.ini" +# Enable rewrite module for httpd. +RUN ln -s /etc/apache2/mods-enabled/rewrite.load /etc/apache2/mods-available/rewrite.load + COPY . /var/www/html