From a5e5c00da26055bc59d9e01ad203667f3ef93453 Mon Sep 17 00:00:00 2001 From: Zanie Blue Date: Sun, 16 Nov 2025 10:32:14 -0600 Subject: [PATCH] Revert "Fix CMD path in FastAPI Dockerfile (#16701)" This reverts commit 92230ba67900c3bcd140740000460c974af44a5d. --- docs/guides/integration/fastapi.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides/integration/fastapi.md b/docs/guides/integration/fastapi.md index 8685536845e64..eeebba5322d84 100644 --- a/docs/guides/integration/fastapi.md +++ b/docs/guides/integration/fastapi.md @@ -113,7 +113,7 @@ WORKDIR /app RUN uv sync --frozen --no-cache # Run the application. -CMD ["/app/.venv/bin/fastapi", "run", "main.py", "--port", "80", "--host", "0.0.0.0"] +CMD ["/app/.venv/bin/fastapi", "run", "app/main.py", "--port", "80", "--host", "0.0.0.0"] ``` Build the Docker image with: