I am building a Docker image that includes Chrome.
The image works perfectly on my local machine, but when deployed to a server, Chrome fails to start with the following error:
[301:301:1224/210431.755768:WARNING:chrome_main_delegate.cc(672)] This is Chrome version 131.0.6778.204 (not a warning)
[301:301:1224/210431.756051:VERBOSE1:chrome_crash_reporter_client.cc(206)] GetCollectStatsConsent(): is_official_chrome_build is false so returning false
[301:301:1224/210431.764222:VERBOSE1:chrome_crash_reporter_client.cc(206)] GetCollectStatsConsent(): is_official_chrome_build is false so returning false
[308:308:1224/210431.801474:VERBOSE1:cdm_registration.cc(287)] Registering bundled Widevine 4.10.2830.0
[309:309:1224/210431.801499:VERBOSE1:cdm_registration.cc(287)] Registering bundled Widevine 4.10.2830.0
[308:308:1224/210431.802020:INFO:cpu_info.cc(53)] Available number of cores: 8
[309:309:1224/210431.802353:INFO:cpu_info.cc(53)] Available number of cores: 8
[308:308:1224/210431.802507:VERBOSE1:zygote_main_linux.cc(201)] ZygoteMain: initializing 0 fork delegates
[309:309:1224/210431.802725:VERBOSE1:zygote_main_linux.cc(201)] ZygoteMain: initializing 0 fork delegates
Trace/breakpoint trap (core dumped)
- Chrome version: linux-131.0.6778.204
- Flags:
--no-sandbox --headless --disable-setuid-sandbox --enable-logging=stderr --v=1
Why is Chrome running locally, but not on the server with exactly the same configuration? My understanding was that the images are supposed to be “identical”…
How can I access the core dump?