Skip to content

Commit

Permalink
remove pip upgrade command
Browse files Browse the repository at this point in the history
  • Loading branch information
sgrtye committed Feb 7, 2024
1 parent 4617b1f commit 77f94c9
Show file tree
Hide file tree
Showing 6 changed files with 0 additions and 6 deletions.
1 change: 0 additions & 1 deletion apiserver/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ FROM python:3.12-alpine
ENV TZ=Europe/London

COPY ./requirements.txt /requirements.txt
RUN pip install --upgrade pip
RUN pip install --no-cache-dir -r /requirements.txt

COPY ./main.py /main.py
Expand Down
1 change: 0 additions & 1 deletion netguard/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ FROM python:3.12-alpine
ENV TZ=Europe/London

COPY ./requirements.txt /requirements.txt
RUN pip install --upgrade pip
RUN pip install --no-cache-dir -r /requirements.txt

COPY ./main.py /main.py
Expand Down
1 change: 0 additions & 1 deletion novel/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ FROM python:3.12-alpine
ENV TZ=Europe/London

COPY ./requirements.txt /requirements.txt
RUN pip install --upgrade pip
RUN pip install --no-cache-dir -r /requirements.txt

RUN mkdir /novel
Expand Down
1 change: 0 additions & 1 deletion submanager/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ FROM python:3.12-alpine
ENV TZ=Europe/London

COPY ./requirements.txt /requirements.txt
RUN pip install --upgrade pip
RUN pip install --no-cache-dir -r /requirements.txt

RUN mkdir /sub
Expand Down
1 change: 0 additions & 1 deletion telebot/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ 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 --no-cache-dir -r /requirements.txt

COPY ./main.py /main.py
Expand Down
1 change: 0 additions & 1 deletion template/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ FROM python:3.12-alpine
ENV TZ=Europe/London

COPY ./requirements.txt /requirements.txt
RUN pip install --upgrade pip
RUN pip install --no-cache-dir -r /requirements.txt

COPY ./main.py /main.py
Expand Down

0 comments on commit 77f94c9

Please sign in to comment.