Update Dockerfile
Browse files- Dockerfile +3 -2
Dockerfile
CHANGED
@@ -3,8 +3,9 @@
|
|
3 |
|
4 |
FROM python:3.9
|
5 |
|
6 |
-
RUN pip freeze > global.txt
|
7 |
-
RUN pip install
|
|
|
8 |
|
9 |
|
10 |
|
|
|
3 |
|
4 |
FROM python:3.9
|
5 |
|
6 |
+
RUN pip freeze > static/global.txt
|
7 |
+
RUN pip install --upgrade pip
|
8 |
+
RUN pip install -r /requirements.txt
|
9 |
|
10 |
|
11 |
|