Added files for building deploy image

This commit is contained in:
2022-09-01 14:56:33 +00:00
parent 9395fc24e8
commit 1add2a49f4
4 changed files with 74 additions and 11 deletions

9
Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
FROM alpine:latest
RUN apk --update --no-cache add git openssh-client jq
COPY config /root/.ssh/
COPY entrypoint.sh /entrypoint.sh
COPY deploy.sh /deploy.sh
ENTRYPOINT ["/entrypoint.sh"]