From 32b05eeb11640227fe02638fd0cd0eb3d53a2649 Mon Sep 17 00:00:00 2001 From: David D'ALMEIDA Date: Wed, 21 Feb 2024 16:46:51 +0100 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 | 8 ++++++++ 1 file changed, 8 insertions(+) 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