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