From 13a3a5596c9f1fd736b0bce86abf1735ebc12249 Mon Sep 17 00:00:00 2001 From: Kevin Decherf Date: Sat, 22 Jul 2023 19:16:32 +0200 Subject: [PATCH] Update dev docker base image to php:8.1-fpm Signed-off-by: Kevin Decherf --- docker/php/Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docker/php/Dockerfile b/docker/php/Dockerfile index 4f93398c6..fc8be15c0 100644 --- a/docker/php/Dockerfile +++ b/docker/php/Dockerfile @@ -1,4 +1,4 @@ -FROM php:7.4-fpm AS rootless +FROM php:8.1-fpm AS rootless ARG DEBIAN_FRONTEND=noninteractive ARG NODE_VERSION=16 @@ -33,7 +33,8 @@ RUN apt-get update && apt-get install -y \ zlib1g-dev \ git \ build-essential \ - nodejs + nodejs \ + npm RUN docker-php-ext-configure gd --with-freetype --with-jpeg --with-webp RUN docker-php-ext-install -j "$(nproc)" \ bcmath \