Spaces:
Runtime error
Runtime error
Upload Dockerfile with huggingface_hub
Browse files- Dockerfile +9 -9
Dockerfile
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
-
FROM python:3.9
|
2 |
-
|
3 |
-
WORKDIR /code
|
4 |
-
|
5 |
-
COPY ./requirements.txt /code/requirements.txt
|
6 |
-
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
7 |
-
|
8 |
-
COPY . /code
|
9 |
-
|
10 |
CMD ["python", "app.py"]
|
|
|
1 |
+
FROM python:3.9
|
2 |
+
|
3 |
+
WORKDIR /code
|
4 |
+
|
5 |
+
COPY ./requirements.txt /code/requirements.txt
|
6 |
+
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
7 |
+
|
8 |
+
COPY . /code
|
9 |
+
|
10 |
CMD ["python", "app.py"]
|