Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -9,7 +9,7 @@ ADD . /app
|
|
| 9 |
# Install any needed packages specified in requirements.txt
|
| 10 |
RUN pip install fastapi uvicorn requests beautifulsoup4 lxml
|
| 11 |
#EXPOSE the port, for now default is 8080 cause it's the only one really allowed by HuggingFace
|
| 12 |
-
EXPOSE
|
| 13 |
|
| 14 |
# Run run.py when the container launches
|
| 15 |
CMD ["uvicorn", "main:app", "--reload"]
|
|
|
|
| 9 |
# Install any needed packages specified in requirements.txt
|
| 10 |
RUN pip install fastapi uvicorn requests beautifulsoup4 lxml
|
| 11 |
#EXPOSE the port, for now default is 8080 cause it's the only one really allowed by HuggingFace
|
| 12 |
+
EXPOSE 8000
|
| 13 |
|
| 14 |
# Run run.py when the container launches
|
| 15 |
CMD ["uvicorn", "main:app", "--reload"]
|