Skip to content

Commit 2642e8b

Browse files
authored
Merge pull request #97 from smlx/fix-image-properly
fix: image properly
2 parents 603e69f + 92b8a45 commit 2642e8b

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

Dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
FROM alpine:3.19@sha256:51b67269f354137895d43f3b3d810bfacd3945438e94dc5ac55fdac340352f48
22
ARG BINARY=binary-build-arg-not-defined
33
ENV BINARY=${BINARY}
4-
ENTRYPOINT ["/${BINARY}"]
5-
COPY $BINARY /
4+
ENTRYPOINT ["sh", "-c"]
5+
CMD ["exec /${BINARY}"]
6+
COPY ${BINARY} /

0 commit comments

Comments
 (0)