assemblybot/Dockerfile

13 lines
310 B
Docker
Raw Normal View History

2023-07-04 00:50:57 +02:00
FROM debian:bookworm
2020-06-08 21:40:29 +02:00
2020-08-14 16:52:08 +02:00
RUN \
apt-get update && \
apt-get install -y python3 python3-requests cron && \
apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
2020-06-08 21:40:29 +02:00
ADD files/main.py /main.py
ADD files/entrypoint.sh /entrypoint.sh
ADD files/crontab.tpl /crontab.tpl
2020-06-08 21:40:29 +02:00
ENTRYPOINT ["/entrypoint.sh"]