Skip to content

Commit 0fa525a

Browse files
committed
Install Chrome in Docker machine
1 parent ef60fb2 commit 0fa525a

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

Dockerfile

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,15 @@ RUN apt-get update -qqy \
5858
&& ln -s /opt/firefox/firefox /usr/bin/firefox \
5959
&& rm -f /tmp/firefox-esr.tar.bz2
6060

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+
6170
#===================
6271
# Timezone settings
6372
#===================

0 commit comments

Comments
 (0)