Skip to content

Commit 468f89f

Browse files
authored
Merge pull request #50 from specsnl/updates
chore: Update dependencies
2 parents 8434aca + f34df4d commit 468f89f

6 files changed

Lines changed: 33 additions & 9 deletions

File tree

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ concurrency:
1515

1616
jobs:
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:
@@ -38,7 +38,7 @@ jobs:
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:

.github/workflows/pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ concurrency:
1414

1515
jobs:
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:
@@ -37,7 +37,7 @@ jobs:
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:

.github/workflows/tag.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ concurrency:
1515

1616
jobs:
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:
@@ -38,7 +38,7 @@ jobs:
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:

apache/Dockerfile

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
# Latest version of PHP base image: https://hub.docker.com/_/php/tags
55
FROM php:8.4.19-apache-trixie AS runtime
66

7+
ARG DEBIAN_FRONTEND=noninteractive
8+
79
ARG XDG_CONFIG_HOME=/config
810
ENV XDG_CONFIG_HOME=$XDG_CONFIG_HOME
911

@@ -28,7 +30,7 @@ ENV SMTPEHLO=localhost
2830
WORKDIR /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

3335
RUN apt-get update \
3436
&& apt-get install --assume-yes --no-install-recommends \
@@ -140,6 +142,9 @@ COPY files /
140142

141143
FROM 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
144149
ARG PHIVE_VERSION=0.16.0
145150
# Latest version of Composer: https://getcomposer.org/download
@@ -233,6 +238,9 @@ EOF
233238
FROM builder AS builder_nodejs
234239

235240
ARG TARGETARCH
241+
ARG DEBIAN_FRONTEND=noninteractive
242+
243+
ENV COREPACK_ENABLE_DOWNLOAD_PROMPT=0
236244

237245
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
238246

fpm/Dockerfile

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
# Latest version of PHP base image: https://hub.docker.com/_/php/tags
55
FROM php:8.4.19-fpm-trixie AS runtime
66

7+
ARG DEBIAN_FRONTEND=noninteractive
8+
79
ARG XDG_CONFIG_HOME=/config
810
ENV XDG_CONFIG_HOME=$XDG_CONFIG_HOME
911

@@ -28,7 +30,7 @@ ENV SMTPEHLO=localhost
2830
WORKDIR /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

3335
RUN apt-get update \
3436
&& apt-get install --assume-yes --no-install-recommends \
@@ -140,6 +142,9 @@ COPY files /
140142

141143
FROM 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
144149
ARG PHIVE_VERSION=0.16.0
145150
# Latest version of Composer: https://getcomposer.org/download
@@ -234,6 +239,9 @@ EOF
234239
FROM builder AS builder_nodejs
235240

236241
ARG TARGETARCH
242+
ARG DEBIAN_FRONTEND=noninteractive
243+
244+
ENV COREPACK_ENABLE_DOWNLOAD_PROMPT=0
237245

238246
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
239247

frankenphp/Dockerfile

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
# Latest version of FrankenPHP base image: https://hub.docker.com/r/dunglas/frankenphp/tags
55
FROM dunglas/frankenphp:1.12.1-php8.4-trixie AS runtime
66

7+
ARG DEBIAN_FRONTEND=noninteractive
8+
79
ARG XDG_CONFIG_HOME=/config
810
ENV XDG_CONFIG_HOME=$XDG_CONFIG_HOME
911

@@ -32,7 +34,7 @@ ENV FRANKENPHP_CONFIG=""
3234
WORKDIR /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

3739
RUN apt-get update \
3840
&& apt-get install --assume-yes --no-install-recommends \
@@ -144,6 +146,9 @@ COPY files /
144146

145147
FROM 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
148153
ARG PHIVE_VERSION=0.16.0
149154
# Latest version of Composer: https://getcomposer.org/download
@@ -237,6 +242,9 @@ EOF
237242
FROM builder AS builder_nodejs
238243

239244
ARG TARGETARCH
245+
ARG DEBIAN_FRONTEND=noninteractive
246+
247+
ENV COREPACK_ENABLE_DOWNLOAD_PROMPT=0
240248

241249
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
242250

0 commit comments

Comments
 (0)