Capitalize dockerfile

This commit is contained in:
nicco
2019-01-22 12:43:57 +01:00
parent 209e111712
commit ea291ac6dd

12
Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM alpine:3.8
ENV file /usr/local/bin/run.sh
RUN apk add --no-cache --update curl grep bash
RUN echo '* * * * * ${file}' > /etc/crontabs/root
COPY ./run.sh ${file}
RUN chmod +x ${file}
CMD ["crond", "-l2", "-f"]