From a3d1536a6b6e282a43521bea28aef027a7133df8 Mon Sep 17 00:00:00 2001 From: Yuki Takizawa Date: Fri, 13 Mar 2020 01:01:39 +0900 Subject: [PATCH] Bugfix: Docker build failure (#5400) The recommended Dockerfile uses node:10-slim image as a base, but the base image does not contain wget command anymore. (About the reason, see https://github.com/nodejs/docker-node/issues/1185) So fixed the problem. --- docs/troubleshooting.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/troubleshooting.md b/docs/troubleshooting.md index be5d45dbbdc62..b6b361caf01bb 100644 --- a/docs/troubleshooting.md +++ b/docs/troubleshooting.md @@ -264,7 +264,9 @@ FROM node:10-slim # 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 # installs, work. -RUN wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - \ +RUN apt-get update \ + && apt-get install -y wget gnupg \ + && 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' \ && apt-get update \ && apt-get install -y google-chrome-unstable fonts-ipafont-gothic fonts-wqy-zenhei fonts-thai-tlwg fonts-kacst fonts-freefont-ttf \