Slim down image

This commit is contained in:
stratholme 2020-08-14 16:52:08 +02:00
parent 17a70648d7
commit dd6b0e0e83

View file

@ -1,6 +1,9 @@
FROM debian:buster
RUN apt-get update && apt-get install -y python3 python3-requests cron
RUN \
apt-get update && \
apt-get install -y python3 python3-requests cron && \
apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
ADD files/main.py /main.py