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