aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
blob: 744696d030064a687ba3b7c93788112c3eb5f119 (plain)
1
2
3
4
5
6
7
8
9
10
FROM debian:latest
MAINTAINER Eden Attenborough "eddie.atten.ea29@gmail.com"
RUN apt-get update -y
RUN apt-get install -y tzdata python3-pip build-essential pkg-config cron libjpeg-dev zlib1g-dev libfreetype6-dev
COPY . /app
WORKDIR /app
COPY crontab /etc/cron.d/oad-crontab
RUN chmod 0644 /etc/cron.d/oad-crontab && crontab /etc/cron.d/oad-crontab
RUN pip3 install -r requirements.txt
ENTRYPOINT ["cron", "-f"]