Initial commit.

This commit is contained in:
yohan 2019-02-03 21:52:11 +01:00
commit ae7e746ca0
2 changed files with 10 additions and 0 deletions

9
Dockerfile Normal file
View File

@ -0,0 +1,9 @@
FROM debian:jessie
MAINTAINER yohan <783b8c87@scimetis.net>
ENV DEBIAN_FRONTEND noninteractive
ENV TZ Europe/Paris
RUN echo "deb http://ftp.debian.org/debian jessie-backports main" >> /etc/apt/sources.list
RUN apt-get update && apt-get -y install cron && apt-get -y install docker.io -t jessie-backports
RUN rm -f /etc/crontab
ENTRYPOINT ["/usr/sbin/cron", "-f", "-L", "8"]
#ENTRYPOINT ["/bin/bash"]

1
build Normal file
View File

@ -0,0 +1 @@
docker build -t cron .