Skip to content

Commit 958df99

Browse files
Fix CMD syntax in Dockerfiles for consistency
1 parent 60ea4f2 commit 958df99

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

DocsManager/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ EXPOSE 8000
1919
HEALTHCHECK --interval=30s --timeout=10s --start-period=40s --retries=3 \
2020
CMD curl -f http://localhost:8000/health || exit 1
2121

22-
CMD ["uv", "run", "--no-sync", "uvicorn", "app.main", "--host", "0.0.0.0", "--port", "8000"]
22+
CMD ["uv", "run", "--no-sync", "uvicorn", "app:main", "--host", "0.0.0.0", "--port", "8000"]

RAGManager/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ EXPOSE 8000
1919
HEALTHCHECK --interval=30s --timeout=10s --start-period=40s --retries=3 \
2020
CMD curl -f http://localhost:8000/health || exit 1
2121

22-
CMD ["uv", "run", "--no-sync", "uvicorn", "app.main", "--host", "0.0.0.0", "--port", "8000"]
22+
CMD ["uv", "run", "--no-sync", "uvicorn", "app:main", "--host", "0.0.0.0", "--port", "8000"]

0 commit comments

Comments
 (0)