From d7f90705d4da243386b77bcc7bada986234e45d5 Mon Sep 17 00:00:00 2001 From: Daewoong Jeon Date: Thu, 30 Oct 2025 10:15:39 +0900 Subject: [PATCH] Update Dockerfile-rag --- deployment/container/Dockerfile-rag | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/deployment/container/Dockerfile-rag b/deployment/container/Dockerfile-rag index dd5a8af..174772c 100644 --- a/deployment/container/Dockerfile-rag +++ b/deployment/container/Dockerfile-rag @@ -49,11 +49,11 @@ ENV PATH="/opt/venv/bin:$PATH" USER ${USERNAME} # Expose port -EXPOSE 8088 +EXPOSE 8080 # Health check HEALTHCHECK --interval=30s --timeout=10s --start-period=40s --retries=3 \ - CMD python -c "import requests; requests.get('http://localhost:8088/health')" || exit 1 + CMD python -c "import requests; requests.get('http://localhost:8080/health')" || exit 1 # Run the application -CMD ["uvicorn", "src.api.main:app", "--host", "0.0.0.0", "--port", "8088"] \ No newline at end of file +CMD ["uvicorn", "src.api.main:app", "--host", "0.0.0.0", "--port", "8080"]