From 72f27db58b16f42b0cf3b77916db0fd00f5a30a3 Mon Sep 17 00:00:00 2001 From: Job79 Date: Thu, 29 Jan 2026 16:11:54 +0100 Subject: [PATCH] fix: php install --- containers/php/Containerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/containers/php/Containerfile b/containers/php/Containerfile index e97378f..c76be99 100644 --- a/containers/php/Containerfile +++ b/containers/php/Containerfile @@ -3,7 +3,7 @@ FROM job79/fedora:${TAG} USER root RUN --mount=type=cache,id=dnf-cache,target=/var/cache/libdnf5 \ - dnf -y --setopt=keepcache=1 install php composer \ + dnf -y --setopt=keepcache=1 install php composer && \ curl -sS https://get.symfony.com/cli/installer | bash USER user