Spaces:
Sleeping
Sleeping
Sudheer-N
commited on
Commit
·
20a8ed2
1
Parent(s):
659812f
Switch to Hugging Face default port 7860
Browse files- dockerfile +2 -2
dockerfile
CHANGED
|
@@ -3,5 +3,5 @@ WORKDIR /app
|
|
| 3 |
COPY requirements.txt .
|
| 4 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 5 |
COPY app.py .
|
| 6 |
-
EXPOSE
|
| 7 |
-
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "
|
|
|
|
| 3 |
COPY requirements.txt .
|
| 4 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 5 |
COPY app.py .
|
| 6 |
+
EXPOSE 7860
|
| 7 |
+
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|