From 35cfbe1857aeb7614aa46e0db2732abccccd43d7 Mon Sep 17 00:00:00 2001 From: Prashant Ghimire Date: Wed, 9 Sep 2020 08:39:32 -0500 Subject: [PATCH] docs(troubleshooting.md): updated commands (#6296) prior command installs stable version of chrome (RUN command), but after that, the docs is referring to unstable version. added correct commands for troubleshooting in linux environment. --- docs/troubleshooting.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/troubleshooting.md b/docs/troubleshooting.md index 42edcafb5c1ed..c33eb1ddd6b7c 100644 --- a/docs/troubleshooting.md +++ b/docs/troubleshooting.md @@ -278,7 +278,7 @@ RUN apt-get update \ # Uncomment to skip the chromium download when installing puppeteer. If you do, # you'll need to launch puppeteer with: -# browser.launch({executablePath: 'google-chrome-unstable'}) +# browser.launch({executablePath: 'google-chrome-stable'}) # ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD true # Install puppeteer so it's available in the container. @@ -293,7 +293,7 @@ RUN npm i puppeteer \ # Run everything after as non-privileged user. USER pptruser -CMD ["google-chrome-unstable"] +CMD ["google-chrome-stable"] ``` Build the container: