docs(troubleshooting.md): add missing temp missing shared lib (#1628)

Fixes #1627.
This commit is contained in:
Eric Bidelman 2017-12-19 16:11:55 -08:00 committed by Andrey Lushnikov
parent b73737302a
commit 1684104dc3

View File

@ -103,8 +103,11 @@ Dockerfile:
```
FROM node:8-slim
# See https://crbug.com/795759
RUN apt-get update && apt-get install -yq libgconf-2-4
# Install latest chrome dev package.
# Note: this installs the necessary libs to make the bundled version of Chromium that Pupppeteer
# Note: this installs the necessary libs to make the bundled version of Chromium that Puppeteer
# installs, work.
RUN apt-get update && apt-get install -y wget --no-install-recommends \
&& wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - \