We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6031db commit 832dbd0Copy full SHA for 832dbd0
docker/dev/Dockerfile
@@ -39,7 +39,8 @@ COPY rdrf/requirements/* ./rdrf/
39
COPY rdrf/clients ./clients
40
41
RUN --mount=type=cache,target=/root/.cache/pip \
42
- pip install -r rdrf/requirements.txt \
+ pip install --upgrade pip setuptools \
43
+ && pip install -r rdrf/requirements.txt \
44
&& pip install -r rdrf/dev-requirements.txt \
45
&& pip install -r rdrf/test-requirements.txt \
46
&& pip install -r requirements.txt \
docker/production/Dockerfile
@@ -37,6 +37,7 @@ COPY requirements/* ./
37
38
+RUN pip install --upgrade setuptools pip
RUN pip install -r rdrf/requirements.txt
RUN pip install -r requirements.txt
0 commit comments