Forex-MT5-Bot/cron/Dockerfile

12 lines
176 B
Text
Raw Permalink Normal View History

2021-09-25 11:43:06 +08:00
FROM ubuntu:latest
ADD crontab /etc/cron.d/python-cron
RUN chmod +x /etc/cron.d/python-cron
RUN touch /var/log/cron.log
RUN apt update -y
RUN apt install cron -y
CMD cron