add build command

This commit is contained in:
2024-05-19 19:13:51 +07:00
parent 887caf5d79
commit 90b1937707
2 changed files with 4 additions and 1 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
FROM alpine:latest
RUN apk add --no-cache ca-certificates
COPY ${REPO_NAME} /usr/local/bin/${REPO_NAME}
COPY bin/${REPO_NAME} /usr/local/bin/${REPO_NAME}
RUN chmod +x /usr/local/bin/${REPO_NAME}
CMD ["/usr/local/bin/${REPO_NAME}"]