We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e0a33b commit fcbd397Copy full SHA for fcbd397
Dockerfile
@@ -7,9 +7,6 @@
7
# includes compilers and build tooling to create the environment
8
FROM python:3.11-slim-bookworm AS backend-build
9
10
-# Ensure we use the latest version of pip
11
-RUN pip install pip "setuptools>70" -U
12
-
13
RUN apt-get update && apt-get upgrade -y && apt-get install -y --no-install-recommends \
14
pkg-config \
15
build-essential \
@@ -23,7 +20,7 @@ WORKDIR /app
23
20
RUN mkdir /app/src
24
21
25
22
# Ensure we use the latest version of pip
26
-RUN pip install pip setuptools -U
+RUN pip install pip "setuptools>=70.0.0" -U
27
COPY ./requirements /app/requirements
28
RUN pip install -r requirements/production.txt
29
0 commit comments