Update Dockerfile

This commit is contained in:
Cossale 2025-08-11 14:57:13 +00:00
parent b8ed169587
commit 9a51f2c1cf

View file

@ -26,7 +26,7 @@ WORKDIR /app
RUN poetry install --no-root
# Expose the port (default 8000)
EXPOSE 8000
EXPOSE 8192
# Run the app with Uvicorn (development mode with reload; switch to --no-reload for prod)
CMD ["poetry", "run", "uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000", "--reload"]
CMD ["poetry", "run", "uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8192", "--reload"]