Samuel L Meyers
commited on
Commit
·
63f3113
1
Parent(s):
66e043d
Fix venv again
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -20,7 +20,7 @@ ENV VIRTUAL_ENV $HOME/app/.venv
|
|
20 |
|
21 |
RUN python -m venv $VIRTUAL_ENV
|
22 |
|
23 |
-
RUN pip install --no-cache-dir --upgrade -r /
|
24 |
|
25 |
COPY . .
|
26 |
|
|
|
20 |
|
21 |
RUN python -m venv $VIRTUAL_ENV
|
22 |
|
23 |
+
RUN pip install --no-cache-dir --upgrade -r $HOME/app/requirements.txt
|
24 |
|
25 |
COPY . .
|
26 |
|