Files
DatBrowser/undetectedChromedriver/seleniumChromedriverDockerfile
Matthias Guillitte f0e52147e4
All checks were successful
Push image to registry / build-image (push) Successful in 5m59s
Added video transcription
2025-07-04 12:36:03 +02:00

15 lines
466 B
Plaintext

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