From 8f8bebb74a03b626a5f27e96c6806bcefa8d6f70 Mon Sep 17 00:00:00 2001 From: marcsello Date: Sat, 11 Dec 2021 01:29:03 +0100 Subject: [PATCH] Removed magic hack --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ef89a49..93c0170 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 apt update && apt install -y git && git clone https://github.com/marcsello/flask-influxdb2.git && pip3 install ./flask-influxdb2/ && pip3 install -r requirements.txt +RUN pip3 install -r requirements.txt ENV GUNICORN_LOGLEVEL="info"