99 lines
3.7 KiB
Docker
99 lines
3.7 KiB
Docker
# Run Firefox in a container
|
|
|
|
FROM debian:jessie
|
|
MAINTAINER Andrey Arapov <andrey.arapov@nixaid.com>
|
|
|
|
# To avoid problems with Dialog and curses wizards
|
|
ENV DEBIAN_FRONTEND noninteractive
|
|
|
|
# -- Install the prerequisites
|
|
# adwaita-icon-theme is required so that cursor size is not ultra tiny
|
|
# gnome-themes-standard and gnome-themes-standard-data are for nice GTK UI
|
|
RUN sed -i.bak 's/jessie main/jessie main contrib/g' /etc/apt/sources.list \
|
|
&& apt-get update \
|
|
&& apt-get install -yq bzip2 libfreetype6 libfontconfig1 \
|
|
libxrender1 libxext6 libxdamage1 libxcomposite1 libasound2 \
|
|
libdbus-glib-1-2 libgtk2.0-0 libxt6 libcanberra-gtk-module \
|
|
pulseaudio \
|
|
adwaita-icon-theme \
|
|
gnome-themes-standard gnome-themes-standard-data \
|
|
flashplugin-nonfree \
|
|
&& rm -rf /var/lib/apt/lists
|
|
|
|
# If you do not want to use pulseaudio
|
|
# COPY asoundrc /etc/asound.conf
|
|
# RUN chgrp audio /etc/asound.conf && chmod 0640 /etc/asound.conf
|
|
|
|
# -- Adobe Flash Plugin
|
|
RUN update-flashplugin-nonfree --install
|
|
|
|
# -- The Firefox
|
|
ENV FIREFOX_VER 45.0.1
|
|
ADD https://download-installer.cdn.mozilla.net/pub/firefox/releases/$FIREFOX_VER/linux-x86_64/en-US/firefox-$FIREFOX_VER.tar.bz2 /tmp/firefox.tar.bz2
|
|
RUN mkdir /opt/mozilla \
|
|
&& tar xf /tmp/firefox.tar.bz2 -C /opt/mozilla/ \
|
|
&& rm -f /tmp/firefox.tar.bz2
|
|
|
|
# -- Google Hangouts
|
|
ADD https://dl.google.com/linux/direct/google-talkplugin_current_amd64.deb /tmp/google-talkplugin_current_amd64.deb
|
|
RUN dpkg -i /tmp/google-talkplugin_current_amd64.deb \
|
|
&& rm -f /tmp/google-talkplugin_current_amd64.deb
|
|
|
|
# -- Java x64 RE plugin
|
|
# Linux x64 http://javadl.sun.com/webapps/download/AutoDL?BundleId=116021
|
|
ENV JAVA_VER 8
|
|
ENV JAVA_JRE_UVER 73
|
|
ENV JAVA_JRE_FVER 1.8.0_73
|
|
ENV JAVA_FONTS "/usr/share/fonts/truetype"
|
|
ENV _JAVA_OPTIONS "-Dawt.useSystemAAFontSettings=on \
|
|
-Dswing.aatext=true \
|
|
-Dsun.java2d.xrender=true \
|
|
-Dswing.defaultlaf=com.sun.java.swing.plaf.gtk.GTKLookAndFeel"
|
|
# ENV _JAVA_AWT_WM_NONREPARENTING 1
|
|
#
|
|
# You can pick alternative Java look (swing.defaultlaf=):
|
|
# - javax.swing.plaf.metal.MetalLookAndFeel
|
|
# - javax.swing.plaf.nimbus.NimbusLookAndFeel
|
|
# - com.sun.java.swing.plaf.gtk.GTKLookAndFeel
|
|
# - com.sun.java.swing.plaf.motif.MotifLookAndFeel
|
|
ADD http://javadl.sun.com/webapps/download/AutoDL?BundleId=116021 /tmp/jre-linux-x64.tar.gz
|
|
RUN mkdir -p /opt/java/64 \
|
|
&& tar xf /tmp/jre-linux-x64.tar.gz -C /opt/java/64/ \
|
|
&& cd /opt/java/64/ \
|
|
&& ln -sv jre${JAVA_JRE_FVER} jre \
|
|
&& ln -sv /opt/java/64/jre/lib/amd64/libnpjp2.so /usr/lib/mozilla/plugins/ \
|
|
&& update-alternatives --install "/usr/bin/java" "java" "/opt/java/64/jre/bin/java" 1 \
|
|
&& update-alternatives --set java /opt/java/64/jre/bin/java \
|
|
&& update-alternatives --install "/usr/bin/javaws" "javaws" "/opt/java/64/jre/bin/javaws" 1 \
|
|
&& update-alternatives --set javaws /opt/java/64/jre/bin/javaws \
|
|
&& rm -f /tmp/jre-linux-x64.tar.gz
|
|
|
|
# -- Define a user under which the firefox will be running
|
|
ENV USER firefox
|
|
ENV UID 1000
|
|
ENV GROUPS video,audio
|
|
ENV HOME /home/$USER
|
|
RUN useradd -u $UID -m -d $HOME -s /usr/sbin/nologin $USER \
|
|
&& usermod -aG $GROUPS $USER
|
|
|
|
# for some unknown reason the ownCloud's (v9.0.0) calendar (v1.0.0.0) doesn't
|
|
# show up the calendars when the time is set to UTC/Zulu
|
|
RUN echo "UTC" > /etc/timezone \
|
|
&& dpkg-reconfigure tzdata
|
|
|
|
WORKDIR $HOME
|
|
USER $USER
|
|
|
|
# Allow write to the following directories when the container starts in
|
|
# in readonly mode
|
|
RUN mkdir -p $HOME/.cache \
|
|
$HOME/.config \
|
|
$HOME/.local \
|
|
$HOME/.java
|
|
VOLUME [ "$HOME/.cache", \
|
|
"$HOME/.config", \
|
|
"$HOME/.local", \
|
|
"$HOME/.java", \
|
|
"/tmp" ]
|
|
ENTRYPOINT [ "/opt/mozilla/firefox/firefox" ]
|