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 9f36b46 commit 656bb67Copy full SHA for 656bb67
api/Dockerfile
@@ -8,12 +8,12 @@ RUN python3 -m venv /venv && \
8
/venv/bin/pip install -U pip setuptools
9
10
COPY requirements.txt /app/requirements.txt
11
-RUN /venv/bin/pip install --no-deps --requirement /app/requirements.txt
+RUN /venv/bin/pip install --requirement /app/requirements.txt
12
13
# Django fails to load templates if this is installed the "regular" way
14
# If we use an editable mode install then it works
15
COPY . /app
16
-RUN /venv/bin/pip install --no-deps -e /app
+RUN /venv/bin/pip install -e /app
17
18
19
FROM ubuntu:jammy
0 commit comments