Launcher image

This commit is contained in:
2018-02-10 00:57:16 +01:00
parent 51f19c805b
commit 94ba9b86c7
5 changed files with 135 additions and 1 deletions

11
launcher-image/Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
# Alpine base image
FROM alpine:edge
RUN apk add --no-cache bash docker parallel ; \
echo "* * * * * /bin/cron-command" >> /etc/crontabs/root
ADD src/* /bin/
CMD [ "/bin/entrypoint" ]