Add basic GitHub Action

This commit is contained in:
2023-12-20 10:44:38 +01:00
commit 05e907702c
4 changed files with 72 additions and 0 deletions

10
Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
FROM alpine:3.19
RUN apk add --no-cache --upgrade \
openssh \
rsync
ADD deploy.sh /
RUN chmod +x /deploy.sh
ENTRYPOINT ["/deploy.sh"]