Skip to content

Commit

Permalink
update pip
Browse files Browse the repository at this point in the history
  • Loading branch information
sgrtye committed Feb 6, 2024
1 parent 9514fc8 commit c407afd
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion netguard/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion novel/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion submanager/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion telebot/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c407afd

Please sign in to comment.