From cb0f114660b8fca5ba2cfb84834249140204f646 Mon Sep 17 00:00:00 2001 From: Snoweuph Date: Sat, 13 Jul 2024 18:12:36 +0000 Subject: [PATCH] images/actions/php/Dockerfile aktualisiert --- images/actions/php/Dockerfile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/images/actions/php/Dockerfile b/images/actions/php/Dockerfile index 384601d..7505024 100644 --- a/images/actions/php/Dockerfile +++ b/images/actions/php/Dockerfile @@ -2,8 +2,9 @@ FROM git.euph.dev/actions/runner-basic:latest ARG PACKAGE_VERSION RUN \ - version=$(echo $PACKAGE_VERSION | tr -d .) && \ - sudo apk add --no-cache \ + version=$(echo $PACKAGE_VERSION | tr -d .) \ + && curl -1sLf 'https://dl.cloudsmith.io/public/symfony/stable/setup.alpine.sh' | sudo -E bash \ + && sudo apk add --no-cache \ composer \ "php${version}" \ "php${version}-xml" \ @@ -11,4 +12,5 @@ RUN \ "php${version}-tokenizer" \ "php${version}-xmlwriter" \ "php${version}-dom" \ - "php${version}-ctype" \ No newline at end of file + "php${version}-ctype" \ + symfony-cli \ No newline at end of file