From cc2e671168161d6b3a55606bdeca39ce705cb6d4 Mon Sep 17 00:00:00 2001 From: Jarian Cottingham Date: Tue, 3 Feb 2026 20:49:29 +0000 Subject: [PATCH] fix: Update Dockerfile to use port 4096 instead of 4095 to avoid Docker network subnetting issues --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index e4ab338..0d23eac 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,11 +13,11 @@ RUN pip install --no-cache-dir -r requirements-api.txt COPY . . # Expose port -EXPOSE 4095 +EXPOSE 4096 # Health check HEALTHCHECK --interval=30s --timeout=10s --start-period=5s --retries=3 \ - CMD curl -f http://localhost:4095/health || exit 1 + CMD curl -f http://localhost:4096/health || exit 1 # Run the application with timeout protection -CMD ["timeout", "3600", "python", "app.py"] \ No newline at end of file +CMD ["timeout", "3600", "python", "app.py"]