Téléverser les fichiers vers "/"

This commit is contained in:
2026-06-03 09:04:41 +00:00
parent f53e39cb41
commit 4256e7b3b5

15
Dockerfile Normal file
View File

@@ -0,0 +1,15 @@
FROM php:8.2-apache
RUN docker-php-ext-install mysqli
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
COPY . /var/www/html/
WORKDIR /var/www/html
RUN composer install --no-interaction
RUN chown -R www-data:www-data /var/www/html/
EXPOSE 80