Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
|
@@ -10,7 +10,8 @@ RUN apt-get update && apt-get install -y \
|
|
| 10 |
|
| 11 |
COPY requirements.txt ./
|
| 12 |
COPY app.py ./
|
| 13 |
-
|
|
|
|
| 14 |
RUN pip3 install -r requirements.txt
|
| 15 |
|
| 16 |
EXPOSE 8501
|
|
|
|
| 10 |
|
| 11 |
COPY requirements.txt ./
|
| 12 |
COPY app.py ./
|
| 13 |
+
COPY model.pkl ./
|
| 14 |
+
COPY vectorizer.pkl ./
|
| 15 |
RUN pip3 install -r requirements.txt
|
| 16 |
|
| 17 |
EXPOSE 8501
|