From 745d960d75d547fc19b84442d63c318d2fedd827 Mon Sep 17 00:00:00 2001 From: marcsello Date: Sun, 12 Dec 2021 02:15:40 +0100 Subject: [PATCH] Revert "Removed magic hack" This reverts commit 8f8bebb74a03b626a5f27e96c6806bcefa8d6f70. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 93c0170..ef89a49 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ ENV PIP_NO_CACHE_DIR=true ENV TZ Europe/Budapest RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone -RUN pip3 install -r requirements.txt +RUN apt update && apt install -y git && git clone https://github.com/marcsello/flask-influxdb2.git && pip3 install ./flask-influxdb2/ && pip3 install -r requirements.txt ENV GUNICORN_LOGLEVEL="info"