Spaces:
Runtime error
Runtime error
Update Dockerfile
#1
by
TRMT
- opened
- Dockerfile +2 -1
Dockerfile
CHANGED
|
@@ -19,4 +19,5 @@ WORKDIR /app
|
|
| 19 |
EXPOSE 80
|
| 20 |
|
| 21 |
# Run app.py when the container launches
|
| 22 |
-
CMD ["uvicorn", "main", "--host", "0.0.0.0", "--port", "80"]
|
|
|
|
|
|
| 19 |
EXPOSE 80
|
| 20 |
|
| 21 |
# Run app.py when the container launches
|
| 22 |
+
#CMD ["uvicorn", "main", "--host", "0.0.0.0", "--port", "80"]
|
| 23 |
+
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "80"]
|