Files
portfoli-ulleres/Dockerfile
T
2026-04-30 20:20:19 +02:00

13 lines
247 B
Docker

FROM php:8.2-apache
# Instal·lar extensions necessàries
RUN docker-php-ext-install mysqli pdo pdo_mysql
# Activar mod_rewrite
RUN a2enmod rewrite
# Copiar projecte
COPY . /var/www/html/
# Permisos
RUN chown -R www-data:www-data /var/www/html