2015-02-16 20:42:48 +01:00
|
|
|
# Base docker image
|
2015-04-17 16:50:12 +02:00
|
|
|
FROM debian:sid
|
2015-02-16 20:42:48 +01:00
|
|
|
MAINTAINER Jessica Frazelle <jess@docker.com>
|
|
|
|
|
2015-07-27 02:44:08 +02:00
|
|
|
ADD https://dl.google.com/linux/direct/google-talkplugin_current_amd64.deb /src/google-talkplugin_current_amd64.deb
|
2015-02-16 20:42:48 +01:00
|
|
|
|
2015-06-06 01:43:26 +02:00
|
|
|
ADD https://dl.google.com/linux/direct/google-chrome-beta_current_amd64.deb /src/google-chrome-beta_current_amd64.deb
|
2015-02-16 20:42:48 +01:00
|
|
|
|
|
|
|
# Install Chromium
|
2015-06-06 03:10:14 +02:00
|
|
|
RUN mkdir -p /usr/share/icons/hicolor && \
|
2015-06-05 19:24:11 +02:00
|
|
|
apt-get update && apt-get install -y \
|
|
|
|
ca-certificates \
|
2015-09-09 22:41:20 +02:00
|
|
|
fonts-liberation \
|
2016-01-08 03:22:29 +01:00
|
|
|
fonts-roboto \
|
2015-11-23 22:05:19 +01:00
|
|
|
fonts-symbola \
|
2015-06-05 19:24:11 +02:00
|
|
|
gconf-service \
|
|
|
|
hicolor-icon-theme \
|
|
|
|
libappindicator1 \
|
|
|
|
libasound2 \
|
|
|
|
libcanberra-gtk-module \
|
|
|
|
libcurl3 \
|
|
|
|
libexif-dev \
|
2016-01-08 03:22:29 +01:00
|
|
|
libfontconfig1 \
|
|
|
|
libfreetype6 \
|
2015-06-05 19:24:11 +02:00
|
|
|
libgconf-2-4 \
|
|
|
|
libgl1-mesa-dri \
|
|
|
|
libgl1-mesa-glx \
|
|
|
|
libnspr4 \
|
|
|
|
libnss3 \
|
|
|
|
libpango1.0-0 \
|
|
|
|
libv4l-0 \
|
|
|
|
libxss1 \
|
|
|
|
libxtst6 \
|
2016-01-08 03:22:29 +01:00
|
|
|
lsb-base \
|
|
|
|
strace \
|
2015-06-05 19:24:11 +02:00
|
|
|
wget \
|
|
|
|
xdg-utils \
|
|
|
|
--no-install-recommends && \
|
2015-06-06 01:43:26 +02:00
|
|
|
dpkg -i '/src/google-chrome-beta_current_amd64.deb' && \
|
2015-06-05 19:24:11 +02:00
|
|
|
dpkg -i '/src/google-talkplugin_current_amd64.deb' \
|
2015-09-09 20:37:20 +02:00
|
|
|
&& rm -rf /var/lib/apt/lists/* \
|
|
|
|
&& rm -rf /src/*.deb
|
2015-02-16 20:42:48 +01:00
|
|
|
|
|
|
|
COPY local.conf /etc/fonts/local.conf
|
|
|
|
|
2015-04-16 05:36:00 +02:00
|
|
|
# Autorun chrome
|
2015-06-06 02:32:04 +02:00
|
|
|
ENTRYPOINT [ "/usr/bin/google-chrome" ]
|
2015-08-23 02:05:15 +02:00
|
|
|
CMD [ "--user-data-dir=/data" ]
|