docs(troubleshooting): Add fonts to docker example to support major charsets (#1842)

Fixes #1824.
This commit is contained in:
Glenn Vandamme 2018-01-19 09:43:00 +01:00 committed by Andrey Lushnikov
parent 102f10cbc7
commit 62597bf897

View File

@ -107,14 +107,14 @@ FROM node:8-slim
# See https://crbug.com/795759 # See https://crbug.com/795759
RUN apt-get update && apt-get install -yq libgconf-2-4 RUN apt-get update && apt-get install -yq libgconf-2-4
# Install latest chrome dev package. # Install latest chrome dev package and fonts to support major charsets (Chinese, Japanese, Arabic, Hebrew, Thai and a few others)
# Note: this installs the necessary libs to make the bundled version of Chromium that Puppeteer # Note: this installs the necessary libs to make the bundled version of Chromium that Puppeteer
# installs, work. # installs, work.
RUN apt-get update && apt-get install -y wget --no-install-recommends \ 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 - \ && wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - \
&& sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' \ && sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' \
&& apt-get update \ && apt-get update \
&& apt-get install -y google-chrome-unstable \ && apt-get install -y google-chrome-unstable fonts-ipafont-gothic fonts-wqy-zenhei fonts-thai-tlwg fonts-kacst ttf-freefont \
--no-install-recommends \ --no-install-recommends \
&& rm -rf /var/lib/apt/lists/* \ && rm -rf /var/lib/apt/lists/* \
&& apt-get purge --auto-remove -y curl \ && apt-get purge --auto-remove -y curl \