Skip to content

Commit b195179

Browse files
Update Python version to 3.13 and fix CMD syntax in Dockerfiles for consistency
1 parent 958df99 commit b195179

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

DocsManager/.python-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.14
1+
3.13

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", "main:app", "--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", "main:app", "--host", "0.0.0.0", "--port", "8000"]

0 commit comments

Comments
 (0)