Spaces:
Sleeping
Sleeping
Upload Dockerfile with huggingface_hub
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -2,7 +2,7 @@ FROM python:3.10
|
|
| 2 |
WORKDIR /code
|
| 3 |
COPY ./app.py /code/app.py
|
| 4 |
COPY ./superkart_model_v1.0_joblib /code/superkart_model_v1.0_joblib
|
| 5 |
-
COPY .
|
| 6 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 7 |
EXPOSE 7860
|
| 8 |
CMD ["python", "app.py"]
|
|
|
|
| 2 |
WORKDIR /code
|
| 3 |
COPY ./app.py /code/app.py
|
| 4 |
COPY ./superkart_model_v1.0_joblib /code/superkart_model_v1.0_joblib
|
| 5 |
+
COPY ./requirements.txt /code/requirements.txt
|
| 6 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 7 |
EXPOSE 7860
|
| 8 |
CMD ["python", "app.py"]
|