File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ concurrency:
1515
1616jobs :
1717 build :
18- uses : specsnl/github-actions/.github/workflows/build-php.yml@1.1 .1
18+ uses : specsnl/github-actions/.github/workflows/build-php.yml@1.2 .1
1919 strategy :
2020 fail-fast : false
2121 matrix :
3838 dockerfile : ${{ matrix.docker.dockerfile }}
3939
4040 merge :
41- uses : specsnl/github-actions/.github/workflows/merge-php.yml@1.1 .1
41+ uses : specsnl/github-actions/.github/workflows/merge-php.yml@1.2 .1
4242 needs : build
4343 strategy :
4444 matrix :
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ concurrency:
1414
1515jobs :
1616 build :
17- uses : specsnl/github-actions/.github/workflows/build-php.yml@1.1 .1
17+ uses : specsnl/github-actions/.github/workflows/build-php.yml@1.2 .1
1818 strategy :
1919 fail-fast : false
2020 matrix :
3737 dockerfile : ${{ matrix.docker.dockerfile }}
3838
3939 merge :
40- uses : specsnl/github-actions/.github/workflows/merge-php.yml@1.1 .1
40+ uses : specsnl/github-actions/.github/workflows/merge-php.yml@1.2 .1
4141 needs : build
4242 strategy :
4343 matrix :
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ concurrency:
1515
1616jobs :
1717 build :
18- uses : specsnl/github-actions/.github/workflows/build-php.yml@1.1 .1
18+ uses : specsnl/github-actions/.github/workflows/build-php.yml@1.2 .1
1919 strategy :
2020 fail-fast : false
2121 matrix :
3838 dockerfile : ${{ matrix.docker.dockerfile }}
3939
4040 merge :
41- uses : specsnl/github-actions/.github/workflows/merge-php.yml@1.1 .1
41+ uses : specsnl/github-actions/.github/workflows/merge-php.yml@1.2 .1
4242 needs : build
4343 strategy :
4444 matrix :
Original file line number Diff line number Diff line change 44# Latest version of PHP base image: https://hub.docker.com/_/php/tags
55FROM php:8.4.19-apache-trixie AS runtime
66
7+ ARG DEBIAN_FRONTEND=noninteractive
8+
79ARG XDG_CONFIG_HOME=/config
810ENV XDG_CONFIG_HOME=$XDG_CONFIG_HOME
911
@@ -28,7 +30,7 @@ ENV SMTPEHLO=localhost
2830WORKDIR /var/www
2931
3032# Latest version of Pie: https://github.com/php/pie/releases
31- COPY --from=ghcr.io/php/pie:1.3.10 -bin /pie /usr/bin/pie
33+ COPY --from=ghcr.io/php/pie:1.4.0 -bin /pie /usr/bin/pie
3234
3335RUN apt-get update \
3436 && apt-get install --assume-yes --no-install-recommends \
@@ -140,6 +142,9 @@ COPY files /
140142
141143FROM runtime AS builder
142144
145+ ARG TARGETARCH
146+ ARG DEBIAN_FRONTEND=noninteractive
147+
143148# Latest version of Phive: https://api.github.com/repos/phar-io/phive/releases/latest
144149ARG PHIVE_VERSION=0.16.0
145150# Latest version of Composer: https://getcomposer.org/download
233238FROM builder AS builder_nodejs
234239
235240ARG TARGETARCH
241+ ARG DEBIAN_FRONTEND=noninteractive
242+
243+ ENV COREPACK_ENABLE_DOWNLOAD_PROMPT=0
236244
237245SHELL ["/bin/bash" , "-o" , "pipefail" , "-c" ]
238246
Original file line number Diff line number Diff line change 44# Latest version of PHP base image: https://hub.docker.com/_/php/tags
55FROM php:8.4.19-fpm-trixie AS runtime
66
7+ ARG DEBIAN_FRONTEND=noninteractive
8+
79ARG XDG_CONFIG_HOME=/config
810ENV XDG_CONFIG_HOME=$XDG_CONFIG_HOME
911
@@ -28,7 +30,7 @@ ENV SMTPEHLO=localhost
2830WORKDIR /var/www
2931
3032# Latest version of Pie: https://github.com/php/pie/releases
31- COPY --from=ghcr.io/php/pie:1.3.10 -bin /pie /usr/bin/pie
33+ COPY --from=ghcr.io/php/pie:1.4.0 -bin /pie /usr/bin/pie
3234
3335RUN apt-get update \
3436 && apt-get install --assume-yes --no-install-recommends \
@@ -140,6 +142,9 @@ COPY files /
140142
141143FROM runtime AS builder
142144
145+ ARG TARGETARCH
146+ ARG DEBIAN_FRONTEND=noninteractive
147+
143148# Latest version of Phive: https://api.github.com/repos/phar-io/phive/releases/latest
144149ARG PHIVE_VERSION=0.16.0
145150# Latest version of Composer: https://getcomposer.org/download
234239FROM builder AS builder_nodejs
235240
236241ARG TARGETARCH
242+ ARG DEBIAN_FRONTEND=noninteractive
243+
244+ ENV COREPACK_ENABLE_DOWNLOAD_PROMPT=0
237245
238246SHELL ["/bin/bash" , "-o" , "pipefail" , "-c" ]
239247
Original file line number Diff line number Diff line change 44# Latest version of FrankenPHP base image: https://hub.docker.com/r/dunglas/frankenphp/tags
55FROM dunglas/frankenphp:1.12.1-php8.4-trixie AS runtime
66
7+ ARG DEBIAN_FRONTEND=noninteractive
8+
79ARG XDG_CONFIG_HOME=/config
810ENV XDG_CONFIG_HOME=$XDG_CONFIG_HOME
911
@@ -32,7 +34,7 @@ ENV FRANKENPHP_CONFIG=""
3234WORKDIR /var/www
3335
3436# Latest version of Pie: https://github.com/php/pie/releases
35- COPY --from=ghcr.io/php/pie:1.3.10 -bin /pie /usr/bin/pie
37+ COPY --from=ghcr.io/php/pie:1.4.0 -bin /pie /usr/bin/pie
3638
3739RUN apt-get update \
3840 && apt-get install --assume-yes --no-install-recommends \
@@ -144,6 +146,9 @@ COPY files /
144146
145147FROM runtime AS builder
146148
149+ ARG TARGETARCH
150+ ARG DEBIAN_FRONTEND=noninteractive
151+
147152# Latest version of Phive: https://api.github.com/repos/phar-io/phive/releases/latest
148153ARG PHIVE_VERSION=0.16.0
149154# Latest version of Composer: https://getcomposer.org/download
237242FROM builder AS builder_nodejs
238243
239244ARG TARGETARCH
245+ ARG DEBIAN_FRONTEND=noninteractive
246+
247+ ENV COREPACK_ENABLE_DOWNLOAD_PROMPT=0
240248
241249SHELL ["/bin/bash" , "-o" , "pipefail" , "-c" ]
242250
You can’t perform that action at this time.
0 commit comments