update undetected chromedriver with bigger session timeout

This commit is contained in:
2025-06-30 12:41:59 +02:00
parent 24629adcd5
commit c13c1db638
5 changed files with 27 additions and 8 deletions

View File

@ -1,10 +1,12 @@
# FROM selenium/standalone-chrome:108.0 AS final
FROM selenium/standalone-chrome:latest AS final
FROM selenium/standalone-chrome:133.0-20250606 AS final
COPY undetectedChromedriver/chromedriver /bin/chromedriver
COPY ./chromedriver /bin/chromedriver
RUN mkdir -p /home/seluser/profile/
ENV TZ=Europe/Brussels
# 15 minutes session timeout
ENV SE_OPTS="--session-timeout 900"
HEALTHCHECK --interval=30s --timeout=10s --retries=3 CMD curl -s http://localhost:4444/wd/hub/status | jq -e '.value.ready == true' || exit 1