Skip to content

Commit 7efdc0b

Browse files
committed
fixed perms and base
1 parent 51e6940 commit 7efdc0b

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
# Minimal runtime image that reuses a pre-built rbuilder binary.
22
# 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.
34

4-
FROM gcr.io/distroless/cc-debian12
5+
FROM gcr.io/distroless/cc-debian13
56
WORKDIR /app
6-
COPY rbuilder /app/rbuilder
7+
COPY --chmod=755 rbuilder /app/rbuilder
78
ENTRYPOINT ["/app/rbuilder"]
89

0 commit comments

Comments
 (0)