Commit
·
0c39cf3
1
Parent(s):
40b29fd
add entrypoint to Dockerfile (correct port)
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -18,6 +18,6 @@ RUN pip install --no-cache-dir -r requirements.txt
|
|
| 18 |
EXPOSE 8000
|
| 19 |
|
| 20 |
# Run main.py when the container launches
|
| 21 |
-
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "
|
| 22 |
|
| 23 |
USER 1001
|
|
|
|
| 18 |
EXPOSE 8000
|
| 19 |
|
| 20 |
# Run main.py when the container launches
|
| 21 |
+
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"]
|
| 22 |
|
| 23 |
USER 1001
|