chore(php-lol): refresh PHP 8.2–8.4 base versions - #370
Merged
Conversation
Co-authored-by: bdossantos <245284+bdossantos@users.noreply.github.com>
Copilot created this pull request from a session on behalf of
bdossantos
August 30, 2026 12:10
View session
bdossantos
marked this pull request as ready for review
August 30, 2026 12:10
Contributor
There was a problem hiding this comment.
🟢 Approval recommended
The version bumps, digests, and ENV/ARG VERSION metadata are consistent within each updated Dockerfile and no stale old-version references remain in the touched variants.
Pull request overview
This PR refreshes the php-lol Dockerfile variants to track the latest patch releases of the upstream php:<version>-fpm-bookworm images, keeping the pinned digests and in-image version metadata consistent for reproducible builds.
Changes:
- Bump
php-lolbase image tags and pinned digests for PHP 8.2, 8.3, and 8.4 variants. - Align
ENV VERSIONand runtime-stageARG VERSIONin each Dockerfile with the updated upstream base version.
File summaries
| File | Description |
|---|---|
| dockerfiles/php-lol/Dockerfile.8.2 | Updates FROM tag+digest and aligns ENV/ARG VERSION to PHP 8.2.33. |
| dockerfiles/php-lol/Dockerfile.8.3 | Updates FROM tag+digest and aligns ENV/ARG VERSION to PHP 8.3.33. |
| dockerfiles/php-lol/Dockerfile.8.4 | Updates FROM tag+digest and aligns ENV/ARG VERSION to PHP 8.4.25. |
Review details
- Files reviewed: 3/3 changed files
- Comments generated: 0
- Review effort level: Lite
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Refresh the
php-lolDocker variants to the latest available patch releases for the supported PHP lines. This keeps the image version metadata aligned with the pinned upstreamphp:fpm-bookwormbases.Version bumps
Dockerfile.8.2:8.2.32→8.2.33Dockerfile.8.3:8.3.32→8.3.33Dockerfile.8.4:8.4.23→8.4.25Digest refresh
FROM php:<version>-fpm-bookworm@sha256:...digests for each bumped variant so the Dockerfiles continue to resolve to the intended upstream image contents.Version metadata alignment
ENV VERSIONandARG VERSIONin each Dockerfile to match the new base image version.