Update Dockerfile to include root path for Uvicorn server
All checks were successful
CI/CD / test-backend (pull_request) Successful in 9s
CI/CD / test-frontend (pull_request) Successful in 10s
CI/CD / build-and-deploy (pull_request) Successful in 26s
CI/CD Pipeline / Overall Status ✅ Все проверки прошли успешно
CI/CD / pr-status (pull_request) Successful in 1s

This commit is contained in:
2026-04-03 15:54:28 +03:00
parent 45cee0785f
commit 7e646cb2c4

View File

@@ -13,4 +13,4 @@ COPY api/ api/
EXPOSE 8000 EXPOSE 8000
CMD ["uvicorn", "api.main:app", "--host", "0.0.0.0", "--port", "8000"] CMD ["uvicorn", "api.main:app", "--host", "0.0.0.0", "--port", "8000", "--root-path", "/python-common-app"]