From cba0f98a2ac7edd3c2bffd0ac53185877403da6b Mon Sep 17 00:00:00 2001 From: Artem Sheremet Date: Sun, 25 Aug 2019 05:13:56 +0200 Subject: [PATCH] docs(troubleshooting): Fix missing package in Docker instructions (#4877) `ttf-freefont` is gone -- looks like it's [replaced](https://packages.debian.org/search?keywords=ttf-freefont) by `fonts-freefont-ttf`, which is [available since oldoldstable](https://packages.debian.org/search?keywords=fonts-freefont-ttf). --- docs/troubleshooting.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/troubleshooting.md b/docs/troubleshooting.md index fa90a22ee83..4e2ae454ca4 100644 --- a/docs/troubleshooting.md +++ b/docs/troubleshooting.md @@ -267,7 +267,7 @@ FROM node:10-slim RUN 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 ttf-freefont \ + && apt-get install -y google-chrome-unstable fonts-ipafont-gothic fonts-wqy-zenhei fonts-thai-tlwg fonts-kacst fonts-freefont-ttf \ --no-install-recommends \ && rm -rf /var/lib/apt/lists/*