From 1bf606920f2813e77bc695f32470b6d1eb2b28ea Mon Sep 17 00:00:00 2001 From: David D'ALMEIDA Date: Thu, 19 Oct 2023 09:51:56 +0200 Subject: [PATCH] =?UTF-8?q?Mise=20=C3=A0=20jour=20de=20'Sources/config/Doc?= =?UTF-8?q?kerfile'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Sources/config/Dockerfile | 7 +++++++ 1 file changed, 7 insertions(+) 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