We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51e6940 commit 7efdc0bCopy full SHA for 7efdc0b
1 file changed
docker/Dockerfile.rbuilder-from-binary
@@ -1,8 +1,9 @@
1
# Minimal runtime image that reuses a pre-built rbuilder binary.
2
# The CI job downloads the linux/amd64 rbuilder binary into the build context as ./rbuilder
3
+# Artifact download does not preserve execute bit; --chmod sets it on copy.
4
-FROM gcr.io/distroless/cc-debian12
5
+FROM gcr.io/distroless/cc-debian13
6
WORKDIR /app
-COPY rbuilder /app/rbuilder
7
+COPY --chmod=755 rbuilder /app/rbuilder
8
ENTRYPOINT ["/app/rbuilder"]
9
0 commit comments