From b928d2a68bd3aa70f65ff8ca2149eefcc78a0ee2 Mon Sep 17 00:00:00 2001 From: Codex Agent Date: Sat, 15 Nov 2025 15:31:53 +0100 Subject: [PATCH] add php to the dockerfile --- Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Dockerfile b/Dockerfile index 3502172..b7b941a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,6 +9,10 @@ ARG NODE_VERSION=20 FROM node:${NODE_VERSION}-bookworm AS node_builder WORKDIR /var/www/html + # install PHP CLI for Wayfinder +RUN apt-get update \ + && apt-get install -y --no-install-recommends php-cli php-mbstring php-xml php-curl \ + && rm -rf /var/lib/apt/lists/* COPY package.json package-lock.json ./ RUN npm ci --no-audit --prefer-offline