From 967f8fa49545d2c6f40c7060f6ed462f9a1f1de9 Mon Sep 17 00:00:00 2001 From: Yassine Guedidi Date: Mon, 25 Dec 2023 23:14:02 +0100 Subject: [PATCH] Fix docker setup --- docker/php/Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/docker/php/Dockerfile b/docker/php/Dockerfile index fc8be15c0..cab35a245 100644 --- a/docker/php/Dockerfile +++ b/docker/php/Dockerfile @@ -1,7 +1,7 @@ FROM php:8.1-fpm AS rootless ARG DEBIAN_FRONTEND=noninteractive -ARG NODE_VERSION=16 +ARG NODE_VERSION=20 RUN apt-get update \ && apt-get install -y \ @@ -33,8 +33,7 @@ RUN apt-get update && apt-get install -y \ zlib1g-dev \ git \ build-essential \ - nodejs \ - npm + nodejs RUN docker-php-ext-configure gd --with-freetype --with-jpeg --with-webp RUN docker-php-ext-install -j "$(nproc)" \ bcmath \