Add first version of simple git sync (#162)

* Add first version of simple git sync

* fix lint
This commit is contained in:
Pascal Vizeli
2017-08-01 00:21:46 +02:00
committed by GitHub
parent 66c5f1a395
commit d85d9b4f54
3 changed files with 82 additions and 0 deletions

13
git_pull/Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
FROM %%BASE_IMAGE%%
# Add env
ENV LANG C.UTF-8
# Setup base
RUN apk add --no-cache jq curl git
# Copy data
COPY run.sh /
RUN chmod a+x /run.sh
CMD [ "/run.sh" ]