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 7374a97 commit b616070Copy full SHA for b616070
build/Dockerfile
@@ -20,11 +20,11 @@ ENV BUILD_AGENT=${BUILD_AGENT}
20
ENTRYPOINT [ "/usr/bin/gateway" ]
21
22
FROM common AS container
23
-COPY --from=builder /go/src/github.com/nginxinc/nginx-gateway-fabric/build/out/gateway /usr/bin/
+COPY --chmod=0755 --from=builder /go/src/github.com/nginx/nginx-gateway-fabric/build/out/gateway /usr/bin/
24
25
FROM common AS local
26
-COPY ./build/out/gateway /usr/bin/
+COPY --chmod=0755 ./build/out/gateway /usr/bin/
27
28
FROM common AS goreleaser
29
ARG TARGETARCH
30
-COPY dist/gateway_linux_$TARGETARCH*/gateway /usr/bin/
+COPY --chmod=0755 dist/gateway_linux_$TARGETARCH*/gateway /usr/bin/
0 commit comments