You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

10 lines
283 B

FROM python:3.9-buster
RUN apt-get update; apt-get install --no-install-recommends cron
RUN touch /var/log/cron.log
COPY collect.sh /root/collect.sh
RUN echo '*/2 * * * * root /root/collect.sh' >> /etc/crontab
CMD ["/bin/bash", "-c", "cron && tail -f /var/log/cron.log"]