11 lines
254 B
Docker
11 lines
254 B
Docker
FROM php:8.3-apache
|
|
|
|
RUN a2enmod rewrite
|
|
|
|
COPY . /var/www/html
|
|
|
|
RUN sed -i 's|/var/www/html|/var/www/html/public|g' \
|
|
/etc/apache2/sites-available/000-default.conf
|
|
|
|
RUN sed -i 's|AllowOverride None|AllowOverride All|g' \
|
|
/etc/apache2/apache2.conf |