From 05313827b087a4ce85a21f80e21ccfa989f21367 Mon Sep 17 00:00:00 2001 From: Michael Wetherald Date: Tue, 27 Oct 2015 22:31:47 -0700 Subject: [PATCH] add fonts-liberation to apt install package list google-chrome-stable is failing to install without the fonts-liberation package. Putting it in the package list fixed the issue for me. --- chrome/stable/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/chrome/stable/Dockerfile b/chrome/stable/Dockerfile index 91eb897..beceb44 100644 --- a/chrome/stable/Dockerfile +++ b/chrome/stable/Dockerfile @@ -20,12 +20,13 @@ MAINTAINER Jessica Frazelle ADD https://dl.google.com/linux/direct/google-talkplugin_current_amd64.deb /src/google-talkplugin_current_amd64.deb -ADD https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb /src/google-chrome-stable_current_amd64.deb +ADD https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb /src/google-chrome-stable_current_amd64.deb # Install Chromium RUN mkdir -p /usr/share/icons/hicolor && \ apt-get update && apt-get install -y \ ca-certificates \ + fonts-liberation \ gconf-service \ hicolor-icon-theme \ libappindicator1 \