Skip to content

Commit 656bb67

Browse files
authored
Remove --no-deps from dockerfile (#387)
1 parent 9f36b46 commit 656bb67

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

api/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ RUN python3 -m venv /venv && \
88
/venv/bin/pip install -U pip setuptools
99

1010
COPY requirements.txt /app/requirements.txt
11-
RUN /venv/bin/pip install --no-deps --requirement /app/requirements.txt
11+
RUN /venv/bin/pip install --requirement /app/requirements.txt
1212

1313
# Django fails to load templates if this is installed the "regular" way
1414
# If we use an editable mode install then it works
1515
COPY . /app
16-
RUN /venv/bin/pip install --no-deps -e /app
16+
RUN /venv/bin/pip install -e /app
1717

1818

1919
FROM ubuntu:jammy

0 commit comments

Comments
 (0)