docker-cron/Dockerfile

9 lines
268 B
Docker
Raw Normal View History

2019-07-02 14:19:42 +00:00
FROM debian:buster
2019-02-03 20:52:11 +00:00
MAINTAINER yohan <783b8c87@scimetis.net>
ENV DEBIAN_FRONTEND noninteractive
ENV TZ Europe/Paris
2019-07-02 14:19:42 +00:00
RUN apt-get update && apt-get -y install cron docker.io
2019-02-03 20:52:11 +00:00
RUN rm -f /etc/crontab
2019-08-21 13:55:28 +00:00
ENTRYPOINT ["/usr/sbin/cron", "-f", "-L", "15"]
2019-02-03 20:52:11 +00:00
#ENTRYPOINT ["/bin/bash"]