aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
authorjwansek <eddie.atten.ea29@gmail.com>2022-08-14 17:04:23 +0000
committerjwansek <eddie.atten.ea29@gmail.com>2022-08-14 17:04:23 +0000
commit759ccd84ab78a5962172e8969d4084a53f8fb154 (patch)
tree63d4790c2404dd43f55e5fd1865a699b09e87fac /Dockerfile
parentecaffd91fdf5c4d76f51c4f4ea574b08ebf75671 (diff)
downloadyaoi-communism-759ccd84ab78a5962172e8969d4084a53f8fb154.tar.gz
yaoi-communism-759ccd84ab78a5962172e8969d4084a53f8fb154.zip
Updated dependencies, README.md
Diffstat (limited to 'Dockerfile')
-rwxr-xr-xDockerfile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index 744696d..b52b107 100755
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,10 +1,11 @@
FROM debian:latest
MAINTAINER Eden Attenborough "eddie.atten.ea29@gmail.com"
-RUN apt-get update -y
+RUN apt-get update --allow-releaseinfo-change
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
+ARG PIP_ONLY_BINARY=cmake
RUN pip3 install -r requirements.txt
ENTRYPOINT ["cron", "-f"]