add deploy

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