Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -11,5 +11,5 @@ RUN pip install fastapi uvicorn requests beautifulsoup4 lxml jinja2 python-multi
|
|
| 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
|
| 15 |
CMD ["python", "main.py"]
|
|
|
|
| 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 main.py when the container launches
|
| 15 |
CMD ["python", "main.py"]
|