Skip to content

Commit ff9df1a

Browse files
committed
Add explicit chmod to COPY instruction for binary permissions
1 parent 1db66a6 commit ff9df1a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM alpine:3.22@sha256:4b7ce07002c69e8f3d704a9c5d6fd3053be500b7f1c69fc0d80990c2
33
ARG TARGETARCH
44

55
RUN apk add --no-cache ca-certificates
6-
COPY dist/nix_linux_${TARGETARCH}_*/temporal /usr/local/bin/temporal
6+
COPY --chmod=755 dist/nix_linux_${TARGETARCH}_*/temporal /usr/local/bin/temporal
77
RUN adduser -u 1000 -D temporal
88
USER temporal
99

0 commit comments

Comments
 (0)