mirror of
https://github.com/yavook/kiwi-cron.git
synced 2024-11-24 08:23:00 +00:00
11 lines
204 B
Docker
11 lines
204 B
Docker
FROM alpine:latest
|
|
|
|
RUN set -ex; \
|
|
\
|
|
mkdir /etc/periodic/5min; \
|
|
chmod 755 /etc/periodic/5min;
|
|
|
|
ENTRYPOINT [ "/usr/sbin/crond" ]
|
|
CMD [ "-fd", "8" ]
|
|
|
|
COPY crontab /var/spool/cron/crontabs/root
|