We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef60fb2 commit 0fa525aCopy full SHA for 0fa525a
Dockerfile
@@ -58,6 +58,15 @@ RUN apt-get update -qqy \
58
&& ln -s /opt/firefox/firefox /usr/bin/firefox \
59
&& rm -f /tmp/firefox-esr.tar.bz2
60
61
+#================
62
+# Install Chrome
63
64
+RUN wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - \
65
+ && echo "deb http://dl.google.com/linux/chrome/deb/ stable main" > /etc/apt/sources.list.d/google.list \
66
+ && apt-get update \
67
+ && apt-get install -y google-chrome-stable \
68
+ && rm -rf /var/lib/apt/lists/*
69
+
70
#===================
71
# Timezone settings
72
0 commit comments