Create Dockerfile

This commit is contained in:
Pascal Vizeli
2017-05-04 16:48:33 +02:00
committed by GitHub
parent f6363e2683
commit 072a6ab8fe

14
sync/Dockerfile Normal file
View File

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