Ajout PDO

This commit is contained in:
SUPREM
2025-10-13 17:07:03 +02:00
parent 9a5784d8c1
commit 670ce57a12
3 changed files with 83 additions and 0 deletions

9
Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
FROM php:8.2-apache
LABEL authors="matthieulmr"
COPY . /var/www/html
WORKDIR /var/www/html
RUN docker-php-ext-install pdo pdo_mysql
EXPOSE 80