From 13bc513deaa0001ff2f56fceb3b6dd77ee82af14 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alejandro=20Guti=C3=A9rrez?= <35082514+alezmad@users.noreply.github.com> Date: Mon, 2 Feb 2026 21:25:24 +0000 Subject: [PATCH] Fix Dockerfile port to 8001 and healthcheck endpoint Co-Authored-By: Claude Opus 4.5 --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 621faf7..23b5c63 100644 --- a/Dockerfile +++ b/Dockerfile @@ -97,8 +97,8 @@ RUN useradd -m -u 1000 scraper && \ USER scraper -# Expose ports: API (8000), VNC (5900), noVNC web (6080) -EXPOSE 8000 5900 6080 +# Expose ports: API (8001), VNC (5900), noVNC web (6080) +EXPOSE 8001 5900 6080 # Environment variables for Chromium in container ENV DISPLAY=:99 @@ -107,7 +107,7 @@ ENV CHROME_PATH=/usr/bin/chromium # Health check HEALTHCHECK --interval=30s --timeout=10s --start-period=60s --retries=3 \ - CMD curl -f http://localhost:8000/health/live || exit 1 + CMD curl -f http://localhost:8001/ || exit 1 # Run startup script (starts Xvfb + API server) CMD ["/app/start.sh"]