Spaces:
Runtime error
Runtime error
Gilbert Botchway commited on
Commit ·
0f273eb
1
Parent(s): 50e7ef4
modified docker
Browse files- Dockerfile +4 -2
Dockerfile
CHANGED
|
@@ -1,8 +1,10 @@
|
|
| 1 |
FROM python:3.9
|
| 2 |
|
| 3 |
-
WORKDIR /
|
| 4 |
|
| 5 |
-
COPY
|
|
|
|
|
|
|
| 6 |
|
| 7 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
| 8 |
|
|
|
|
| 1 |
FROM python:3.9
|
| 2 |
|
| 3 |
+
WORKDIR /app
|
| 4 |
|
| 5 |
+
COPY requirements.txt
|
| 6 |
+
|
| 7 |
+
COPY sentimentappstreamlit.py .
|
| 8 |
|
| 9 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
| 10 |
|