docker-browser-box/Dockerfile

29 lines
1.4 KiB
Docker
Raw Normal View History

FROM sameersbn/ubuntu:14.04.20150816
2014-09-22 20:02:55 +00:00
2015-08-05 07:59:56 +00:00
ENV TOR_BROWSER_VERSION=4.5.3 \
WEB_BROWSER_USER=browser
2014-09-22 20:02:55 +00:00
RUN wget -q -O - "https://dl-ssl.google.com/linux/linux_signing_key.pub" | sudo apt-key add - \
&& echo "deb http://dl.google.com/linux/chrome/deb/ stable main" > /etc/apt/sources.list.d/google-chrome.list \
&& apt-get update \
&& apt-get install -y xz-utils file locales dbus-x11 pulseaudio dmz-cursor-theme \
2015-03-25 13:52:00 +00:00
fonts-dejavu fonts-liberation hicolor-icon-theme \
2014-09-22 20:02:55 +00:00
libcanberra-gtk3-0 libcanberra-gtk-module libcanberra-gtk3-module \
2015-08-16 12:44:14 +00:00
libasound2 libglib2.0 libgtk2.0-0 libdbus-glib-1-2 libxt6 libexif12 \
2014-09-22 20:02:55 +00:00
libgl1-mesa-glx libgl1-mesa-dri \
2015-03-25 13:54:26 +00:00
google-chrome-stable chromium-browser firefox \
2014-09-22 20:02:55 +00:00
&& update-locale LANG=C.UTF-8 LC_MESSAGES=POSIX \
&& mkdir -p /usr/lib/tor-browser \
&& wget -O /tmp/tor-browser-linux64-${TOR_BROWSER_VERSION}_en-US.tar.xz \
https://www.torproject.org/dist/torbrowser/${TOR_BROWSER_VERSION}/tor-browser-linux64-${TOR_BROWSER_VERSION}_en-US.tar.xz \
&& tar -Jvxf /tmp/tor-browser-linux64-${TOR_BROWSER_VERSION}_en-US.tar.xz --strip=1 -C /usr/lib/tor-browser \
2015-06-23 17:37:08 +00:00
&& ln -sf /usr/lib/tor-browser/Browser/start-tor-browser /usr/bin/tor-browser \
&& rm -rf /tmp/tor-browser-linux64-${TOR_BROWSER_VERSION}_en-US.tar.xz \
&& rm -rf /var/lib/apt/lists/*
2014-09-22 20:02:55 +00:00
COPY scripts /scripts
COPY entrypoint.sh /sbin/entrypoint.sh
RUN chmod 755 /sbin/entrypoint.sh
2014-09-22 20:02:55 +00:00
ENTRYPOINT ["/sbin/entrypoint.sh"]