Fix Dockerfile: use :latest for both stages #21
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "fix-dockerfile-build-tag"
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?
Summary
The ruby-arch pipeline only pushes
:latest(which is the build stage with compilers). The:buildtag referenced in the Dockerfile doesn't exist, breaking Docker builds.Changes
FROM pal-e/ruby-arch:build AS build→FROM pal-e/ruby-arch:latest AS buildTest Plan
docker buildsucceeds locally with external Harbor URLReview Checklist
Related Notes
Follow-up needed: update ruby-arch Woodpecker pipeline to push both
:baseand:buildtags via Kaniko--target.