Edward J. Schwartz
commited on
Commit
·
8745857
1
Parent(s):
86a2bff
Use pip3
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -8,8 +8,8 @@ RUN apt-get -y update
|
|
8 |
|
9 |
RUN apt-get -y install python3-pip
|
10 |
|
11 |
-
RUN
|
12 |
|
13 |
COPY . .
|
14 |
|
15 |
-
CMD ["python3", "app.py"]
|
|
|
8 |
|
9 |
RUN apt-get -y install python3-pip
|
10 |
|
11 |
+
RUN pip3 install --no-cache-dir --upgrade -r /code/requirements.txt
|
12 |
|
13 |
COPY . .
|
14 |
|
15 |
+
CMD ["python3", "app.py"]
|