diff --git a/Sources/config/Dockerfile b/Sources/config/Dockerfile index 4d283d13..2f19dd66 100755 --- a/Sources/config/Dockerfile +++ b/Sources/config/Dockerfile @@ -1,4 +1,12 @@ FROM php:8.2-apache as base +# 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