Skip to content

Commit f025bcc

Browse files
committed
fixup! Use Signed Binaries for Docker Build
1 parent f3dadea commit f025bcc

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed
Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
ARG ARTIFACT_DIR
22

33
FROM scratch AS linux
4-
COPY ${ARTIFACT_DIR}/bin/dropgz dropgz
4+
COPY ${ARTIFACT_DIR}/bin/dropgz /dropgz
5+
RUN chmod +x /dropgz
56
ENTRYPOINT [ "/dropgz" ]
67

78

89
# skopeo inspect docker://mcr.microsoft.com/oss/kubernetes/windows-host-process-containers-base-image:v1.0.0 --format "{{.Name}}@{{.Digest}}"
910
FROM mcr.microsoft.com/oss/kubernetes/windows-host-process-containers-base-image@sha256:b4c9637e032f667c52d1eccfa31ad8c63f1b035e8639f3f48a510536bf34032b as windows
10-
COPY ${ARTIFACT_DIR}/bin/dropgz.exe dropgz.exe
11+
COPY ${ARTIFACT_DIR}/bin/dropgz.exe /dropgz.exe
12+
RUN chmod +x /dropgz.exe
1113
ENTRYPOINT [ "/dropgz.exe" ]

0 commit comments

Comments
 (0)