docker-meshviewer-cron/Dockerfile

10 lines
164 B
Docker
Raw Normal View History

2018-04-17 22:21:30 +00:00
FROM alpine:3.7
LABEL maintainer "Stefan Hoffmann>"
# Configure cron
COPY crontab /etc/cron/crontab
# Init cron
RUN crontab /etc/cron/crontab
CMD ["crond", "-f"]