Skip to content

Commit 832dbd0

Browse files
committed
Use the latest version of setuptools
1 parent a6031db commit 832dbd0

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

docker/dev/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@ COPY rdrf/requirements/* ./rdrf/
3939
COPY rdrf/clients ./clients
4040

4141
RUN --mount=type=cache,target=/root/.cache/pip \
42-
pip install -r rdrf/requirements.txt \
42+
pip install --upgrade pip setuptools \
43+
&& pip install -r rdrf/requirements.txt \
4344
&& pip install -r rdrf/dev-requirements.txt \
4445
&& pip install -r rdrf/test-requirements.txt \
4546
&& pip install -r requirements.txt \

docker/production/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ COPY requirements/* ./
3737

3838
COPY rdrf/clients ./clients
3939

40+
RUN pip install --upgrade setuptools pip
4041
RUN pip install -r rdrf/requirements.txt
4142
RUN pip install -r requirements.txt
4243

0 commit comments

Comments
 (0)