Update CMD to run uvicorn with --no-sync option (#2100)
This commit is contained in:
parent
718dddde75
commit
fe2595a05c
|
|
@ -84,4 +84,4 @@ COPY --from=builder /app/backend ./backend
|
|||
EXPOSE 8001 2024
|
||||
|
||||
# Default command (can be overridden in docker-compose)
|
||||
CMD ["sh", "-c", "cd backend && PYTHONPATH=. uv run uvicorn app.gateway.app:app --host 0.0.0.0 --port 8001"]
|
||||
CMD ["sh", "-c", "cd backend && PYTHONPATH=. uv run --no-sync uvicorn app.gateway.app:app --host 0.0.0.0 --port 8001"]
|
||||
|
|
|
|||
Loading…
Reference in New Issue