[PR #20] [MERGED] fix(techdocs-builder): move FINAL_BASE ARG to global scope #21
Labels
No labels
pull-request
released
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
webgrip/infrastructure#21
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/webgrip/infrastructure/pull/20
Author: @Copilot
Created: 5/30/2026
Status: ✅ Merged
Merged: 5/30/2026
Merged by: @Ryangr0
Base:
main← Head:copilot/fix-failing-github-actions-job📝 Commits (2)
4f37e77Initial plan5e8d739fix(techdocs-builder): move FINAL_BASE ARG to global scope before first FROM📊 Changes
1 file changed (+2 additions, -1 deletions)
View changed files
📝
ops/docker/techdocs-builder/Dockerfile(+2 -1)📄 Description
ARG FINAL_BASEwas declared inside theopenjdkbuild stage (afterFROM eclipse-temurin:), making it stage-scoped. Docker requires ARGs referenced inFROMinstructions to be declared before the firstFROM(global scope), causing BuildKit to treat the variable as undefined and blank.Changes
ops/docker/techdocs-builder/Dockerfile: MovedARG FINAL_BASE=...to line 1, before the firstFROM— matching the pattern already used byact-runnerandhelm-deployDockerfiles. Also corrected the Alpine tag from3.23(floating) to3.23.3to align with the pinned sha256 digest used across all other images in this repo.🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.