Skip to content

Commit bd3b2b8

Browse files
committed
Update pip in Dockerfiles
1 parent d8c8702 commit bd3b2b8

2 files changed

Lines changed: 6 additions & 0 deletions

File tree

Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ FROM base AS deps
99
COPY . /app
1010
WORKDIR ${FOLDER}
1111

12+
# Update pip
13+
RUN pip install --upgrade pip
14+
1215
USER 1000:1000
1316

1417
# Install dependencies

Dockerfile.dev

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ ARG FOLDER=/app
66
COPY --chown=1000:1000 . /app
77
WORKDIR ${FOLDER}
88

9+
# Update pip
10+
RUN pip install --upgrade pip
11+
912
USER 1000:1000
1013

1114
# Setup venv

0 commit comments

Comments
 (0)