Added sync function

This commit is contained in:
2020-12-09 12:36:11 +00:00
parent 9e0630f9c8
commit fa1329b62f
2 changed files with 91 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
FROM alpine/git
RUN apk update && apk add bash curl jq
WORKDIR /app
ADD sync.sh sync.sh
ENTRYPOINT ["/app/sync.sh"]