From db1d1b212891f45741cc8f9ce439bb140969a272 Mon Sep 17 00:00:00 2001 From: goulustis Date: Thu, 6 Nov 2025 14:38:34 +0800 Subject: [PATCH] updating docker file --- Dockerfile | 2 +- docker-compose.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index c06e66d..51073cb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -40,7 +40,7 @@ RUN python -m pip install --upgrade pip \ --trusted-host mirrors.aliyun.com \ --default-timeout=300 -EXPOSE 8488 +EXPOSE 8588 # Create entrypoint script that initializes conda/mamba and runs the command RUN echo '#!/bin/bash\n\ diff --git a/docker-compose.yml b/docker-compose.yml index 437cb45..2179c9b 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -3,7 +3,7 @@ services: build: . container_name: lang-agent-api ports: - - "8488:8488" + - "8588:8588" env_file: - ./.env environment: @@ -15,7 +15,7 @@ services: - ./assets:/app/assets restart: unless-stopped healthcheck: - test: ["CMD", "python", "-c", "import urllib.request; urllib.request.urlopen('http://localhost:8488/health')"] + test: ["CMD", "python", "-c", "import urllib.request; urllib.request.urlopen('http://localhost:8588/health')"] interval: 30s timeout: 10s retries: 3