Create Dockerfile

This commit is contained in:
Pascal Vizeli
2017-05-04 08:28:01 +02:00
committed by GitHub
parent a4e9574221
commit 56724e02d6

14
coffee_maker/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" ]