Skip to content

Commit b73b32b

Browse files
committed
deps: Move to PHP 8.3
Use a dedicated tag for now
1 parent 651af97 commit b73b32b

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

.github/workflows/continuous-deployment.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,3 +35,4 @@ jobs:
3535
tag_with_ref: true
3636
tag_with_sha: true
3737
add_git_labels: true
38+
tags: php83

.github/workflows/continuous-integration.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
with:
2121
repository: gogaille/bref
2222
path: ./bref
23-
tags: latest
23+
tags: php83
2424
push: false
2525
- name: test
2626
run: |

bref/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
# syntax=docker/dockerfile:1.4
2-
ARG PHP_VERSION=82
2+
ARG PHP_VERSION=83
33
ARG ALPINE_VERSION=3.16
44
ARG BREF_VERSION=2
5-
ARG REDIS_EXTRA_VERSION=1.0.0
5+
ARG REDIS_EXTRA_VERSION=1.3.5
66

77
FROM bref/extra-redis-php-${PHP_VERSION}:${REDIS_EXTRA_VERSION} AS redis_extension
88

99
FROM alpine:${ALPINE_VERSION} as tools-installer
1010
RUN apk add --no-cache curl gnupg
1111

1212
FROM tools-installer as hcl2json
13-
ARG HCL2JSON_VERSION=0.3.5
13+
ARG HCL2JSON_VERSION=0.6.0
1414
RUN <<EOF ash -e
1515
curl -SsL https://github.com/tmccombs/hcl2json/releases/download/${HCL2JSON_VERSION}/hcl2json_linux_amd64 > /usr/local/bin/hcl2json
1616
chmod 755 /usr/local/bin/hcl2json
@@ -49,7 +49,7 @@ ENV PATH=$PATH:/var:/var/task/bin \
4949
HANDLER=public/index.php \
5050
DOCUMENT_ROOT=public
5151
COPY --link entrypoint.sh /gogaille-entrypoint.sh
52-
COPY --link --from=composer:2.5 /usr/bin/composer /usr/local/bin/composer
52+
COPY --link --from=composer:2.6 /usr/bin/composer /usr/local/bin/composer
5353
COPY --link --from=phive /usr/local/bin/phive /usr/local/bin/
5454
RUN phive --version
5555
COPY --link --from=hcl2json /usr/local/bin/hcl2json /usr/local/bin/

0 commit comments

Comments
 (0)