From 708833bb34e6575b42d368a3475807524c7e3972 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Sun, 26 Feb 2023 16:06:12 +0100 Subject: [PATCH] Update Dockerfile --- binance-trading-bot/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/binance-trading-bot/Dockerfile b/binance-trading-bot/Dockerfile index 3a92bb415..bc7b1ce64 100644 --- a/binance-trading-bot/Dockerfile +++ b/binance-trading-bot/Dockerfile @@ -46,7 +46,7 @@ ENV FLASK_ENV=production RUN \ apk add --no-cache --quiet python3 py3-pip curl \ && curl -o requirements.txt https://raw.githubusercontent.com/chrisleekr/binance-trading-bot/master/tradingview/requirements.txt \ - && pip install -r requirements.txt \ + && pip install --no-cache-dir -r requirements.txt \ && rm requirements.txt \ && curl -o /srv/main.py https://raw.githubusercontent.com/chrisleekr/binance-trading-bot/master/tradingview/main.py