Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +3 -4
Dockerfile
CHANGED
@@ -2,9 +2,8 @@ FROM python:3.10
|
|
2 |
|
3 |
WORKDIR /app
|
4 |
|
5 |
-
COPY
|
6 |
-
RUN pip install -r requirements.txt
|
7 |
|
8 |
-
|
9 |
|
10 |
-
CMD ["python", "
|
|
|
2 |
|
3 |
WORKDIR /app
|
4 |
|
5 |
+
COPY app.py .
|
|
|
6 |
|
7 |
+
RUN pip install flask huggingface_hub gdown
|
8 |
|
9 |
+
CMD ["python", "app.py"]
|