-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Previous changes broke docker images and also remove the v prefix from the image version tag . This change adds the prefix back and makes the docker images work again.
- Loading branch information
Showing
2 changed files
with
26 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
FROM alpine:3.19@sha256:c5b1261d6d3e43071626931fc004f70149baeba2c8ec672bd4f27761f8e1ad6b | ||
ARG BINARY=binary-build-arg-not-defined | ||
ENTRYPOINT ["/${BINARY}"] | ||
COPY $BINARY / | ||
ENV BINARY=${BINARY} | ||
ENTRYPOINT ["sh", "-c"] | ||
CMD ["exec /${BINARY}"] | ||
COPY ${BINARY} / |