2024-05-19 12:04:02 +00:00
|
|
|
FROM alpine:latest
|
|
|
|
RUN apk add --no-cache ca-certificates
|
2024-05-19 12:13:51 +00:00
|
|
|
COPY bin/${REPO_NAME} /usr/local/bin/${REPO_NAME}
|
2024-05-19 12:04:02 +00:00
|
|
|
RUN chmod +x /usr/local/bin/${REPO_NAME}
|
|
|
|
CMD ["/usr/local/bin/${REPO_NAME}"]
|