From c407afd1dfc5590f2f9713fb34cb82e7eca2a5d2 Mon Sep 17 00:00:00 2001 From: sgrtye Date: Tue, 6 Feb 2024 10:37:41 +0000 Subject: [PATCH] update pip --- netguard/Dockerfile | 2 +- novel/Dockerfile | 2 +- submanager/Dockerfile | 2 +- telebot/Dockerfile | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/netguard/Dockerfile b/netguard/Dockerfile index 4b2a168..528278e 100644 --- a/netguard/Dockerfile +++ b/netguard/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 diff --git a/novel/Dockerfile b/novel/Dockerfile index c465713..66f2f80 100644 --- a/novel/Dockerfile +++ b/novel/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 RUN mkdir /novel diff --git a/submanager/Dockerfile b/submanager/Dockerfile index 9f6473b..b8e4498 100644 --- a/submanager/Dockerfile +++ b/submanager/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 RUN mkdir /sub diff --git a/telebot/Dockerfile b/telebot/Dockerfile index 8e40a17..0ebf2f6 100644 --- a/telebot/Dockerfile +++ b/telebot/Dockerfile @@ -5,7 +5,7 @@ ENV TZ=Europe/London RUN apk add gcc musl-dev linux-headers 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