From f1d5f288f9208b19ca0a90d855bbde89cb4726b3 Mon Sep 17 00:00:00 2001 From: Torma Date: Fri, 23 Oct 2020 19:12:40 +0200 Subject: [PATCH] slow runs it is --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8ed1eec..4473d60 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,8 @@ ENV SEARCHDIR /data ENV CHARTDIR /chart ENV TEXTDIR /text -RUN apt update && apt install -y python3-matplotlib && apt clean && pip3 install --no-cache-dir sentry_sdk +COPY requirements.txt . +RUN pip3 install --no-cache-dir -r requirements.txt && rm requirements.txt COPY make_graphs.py .