9 lines
268 B
Docker
9 lines
268 B
Docker
FROM debian:buster
|
|
MAINTAINER yohan <783b8c87@scimetis.net>
|
|
ENV DEBIAN_FRONTEND noninteractive
|
|
ENV TZ Europe/Paris
|
|
RUN apt-get update && apt-get -y install cron docker.io
|
|
RUN rm -f /etc/crontab
|
|
ENTRYPOINT ["/usr/sbin/cron", "-f", "-L", "15"]
|
|
#ENTRYPOINT ["/bin/bash"]
|