From 9514fc8f961449a98f5615112151ebf3bea11947 Mon Sep 17 00:00:00 2001 From: sgrtye Date: Tue, 6 Feb 2024 10:35:29 +0000 Subject: [PATCH] update pip --- template/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/template/Dockerfile b/template/Dockerfile index 4b2a168..528278e 100644 --- a/template/Dockerfile +++ b/template/Dockerfile @@ -3,7 +3,7 @@ FROM python:3.12-alpine ENV TZ=Europe/London COPY ./requirements.txt /requirements.txt -# RUN pip install --upgrade pip +RUN pip install --upgrade pip RUN pip install -r /requirements.txt COPY ./main.py /main.py