From 751ff194dd4e9eebd4fe3e5ae01fedd5a663bd73 Mon Sep 17 00:00:00 2001 From: Snoweuph Date: Sat, 13 Jul 2024 10:39:39 +0000 Subject: [PATCH] images/actions/php/Dockerfile aktualisiert --- images/actions/php/Dockerfile | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/images/actions/php/Dockerfile b/images/actions/php/Dockerfile index 9e36500..7b1c655 100644 --- a/images/actions/php/Dockerfile +++ b/images/actions/php/Dockerfile @@ -1,4 +1,12 @@ FROM git.euph.dev/actions/runner-basic:latest ARG PACKAGE_VERSION -RUN sudo apk add --no-cache "php$(echo $PACKAGE_VERSION | tr -d .)" composer \ No newline at end of file +RUN \ + version=$(echo $PACKAGE_VERSION | tr -d .) && \ + sudo apk add --no-cache y \ + composer \ + "php${version}" \ + "php${version}-xml" \ + "php${version}-simplexml" \ + "php${version}-tokenizer" \ + "php${version}-xmlwriter" \ No newline at end of file