Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion 8.4/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ FROM cimg/base:2026.03-22.04

LABEL maintainer="CircleCI Execution Team <eng-execution@circleci.com>"

ENV PHP_VERSION=8.4.19
ENV PHP_VERSION=8.4.20
ENV PHP_MINOR=8.4

# Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion 8.4/browsers/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# vim:set ft=dockerfile:

FROM cimg/php:8.4.19-node
FROM cimg/php:8.4.20-node

LABEL maintainer="CircleCI Community & Partner Engineering Team <community-partner@circleci.com>"

Expand Down
2 changes: 1 addition & 1 deletion 8.4/node/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# vim:set ft=dockerfile:

FROM cimg/php:8.4.19
FROM cimg/php:8.4.20

LABEL maintainer="Community & Partner Engineering Team <community-partner@circleci.com>"

Expand Down
2 changes: 1 addition & 1 deletion 8.5/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ FROM cimg/base:2026.03-22.04

LABEL maintainer="CircleCI Execution Team <eng-execution@circleci.com>"

ENV PHP_VERSION=8.5.4
ENV PHP_VERSION=8.5.5
ENV PHP_MINOR=8.5

# Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion 8.5/browsers/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# vim:set ft=dockerfile:

FROM cimg/php:8.5.4-node
FROM cimg/php:8.5.5-node

LABEL maintainer="CircleCI Community & Partner Engineering Team <community-partner@circleci.com>"

Expand Down
2 changes: 1 addition & 1 deletion 8.5/node/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# vim:set ft=dockerfile:

FROM cimg/php:8.5.4
FROM cimg/php:8.5.5

LABEL maintainer="Community & Partner Engineering Team <community-partner@circleci.com>"

Expand Down
2 changes: 1 addition & 1 deletion GEN-CHECK
Original file line number Diff line number Diff line change
@@ -1 +1 @@
GEN_CHECK=(8.5.4 8.4.19)
GEN_CHECK=(8.4.20 8.5.5)
12 changes: 6 additions & 6 deletions build-images.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ set -eo pipefail

docker context create cimg
docker buildx create --use cimg
docker buildx build --platform=linux/amd64,linux/arm64 --file 8.5/Dockerfile -t cimg/php:8.5.4 -t cimg/php:8.5 --push .
docker buildx build --platform=linux/amd64,linux/arm64 --file 8.5/node/Dockerfile -t cimg/php:8.5.4-node -t cimg/php:8.5-node --push .
docker buildx build --platform=linux/amd64 --file 8.5/browsers/Dockerfile -t cimg/php:8.5.4-browsers -t cimg/php:8.5-browsers --push .
docker buildx build --platform=linux/amd64,linux/arm64 --file 8.4/Dockerfile -t cimg/php:8.4.19 -t cimg/php:8.4 --push .
docker buildx build --platform=linux/amd64,linux/arm64 --file 8.4/node/Dockerfile -t cimg/php:8.4.19-node -t cimg/php:8.4-node --push .
docker buildx build --platform=linux/amd64 --file 8.4/browsers/Dockerfile -t cimg/php:8.4.19-browsers -t cimg/php:8.4-browsers --push .
docker buildx build --platform=linux/amd64,linux/arm64 --file 8.4/Dockerfile -t cimg/php:8.4.20 -t cimg/php:8.4 --push .
docker buildx build --platform=linux/amd64,linux/arm64 --file 8.4/node/Dockerfile -t cimg/php:8.4.20-node -t cimg/php:8.4-node --push .
docker buildx build --platform=linux/amd64 --file 8.4/browsers/Dockerfile -t cimg/php:8.4.20-browsers -t cimg/php:8.4-browsers --push .
docker buildx build --platform=linux/amd64,linux/arm64 --file 8.5/Dockerfile -t cimg/php:8.5.5 -t cimg/php:8.5 --push .
docker buildx build --platform=linux/amd64,linux/arm64 --file 8.5/node/Dockerfile -t cimg/php:8.5.5-node -t cimg/php:8.5-node --push .
docker buildx build --platform=linux/amd64 --file 8.5/browsers/Dockerfile -t cimg/php:8.5.5-browsers -t cimg/php:8.5-browsers --push .