diff --git a/Sources/config/Dockerfile b/Sources/config/Dockerfile index 13227dba..53dfbb39 100644 --- a/Sources/config/Dockerfile +++ b/Sources/config/Dockerfile @@ -1,4 +1,11 @@ FROM php:8.2-apache +# Installation de dépendances nécessaires pour Composer +RUN apt-get update && apt-get install -y \ + git \ + unzip + +# Installation de Composer +RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer RUN docker-php-ext-install pdo pdo_mysql