12 lines
241 B
Text
12 lines
241 B
Text
|
FROM debian:buster
|
||
|
|
||
|
RUN apt install -y python3 python3-requests cron
|
||
|
|
||
|
ADD files/main.py /main.py
|
||
|
|
||
|
ADD files/crontab /etc/cron.d/assembly-cron
|
||
|
RUN chmod 0644 /etc/cron.d/assembly-cron
|
||
|
RUN crontab /etc/cron.d/assembly-cron
|
||
|
|
||
|
CMD ["cron", "-f"]
|