FROM ubuntu:xenial MAINTAINER Andrey Arapov # To avoid problems with Dialog and curses wizards ENV DEBIAN_FRONTEND noninteractive # Keep the image updated and install the dependencies RUN apt-get update && \ apt-get -y upgrade && \ apt-get -y dist-upgrade && \ apt-get -fy install && \ apt-get -y install bzip2 libgtk2.0-0 libgtk-3-0 libdbus-glib-1-2 libxt6 paxctl \ pulseaudio libgl1-mesa-glx x264 \ libpango1.0-0 libv4l-0 \ fonts-opensymbol ttf-ubuntu-font-family \ fonts-tlwg-waree-ttf fonts-tlwg-umpush-ttf \ fonts-tlwg-typo-ttf fonts-tlwg-typist-ttf \ fonts-tlwg-typewriter-ttf fonts-tlwg-sawasdee-ttf \ fonts-tlwg-purisa-ttf fonts-tlwg-norasi-ttf \ fonts-tlwg-mono-ttf fonts-tlwg-loma-ttf \ fonts-tlwg-laksaman-ttf fonts-tlwg-kinnari-ttf \ fonts-tlwg-garuda-ttf fonts-tibetan-machine \ fonts-takao-pgothic fonts-symbola fonts-sil-padauk \ fonts-sil-abyssinica fonts-nanum fonts-lohit-guru \ fonts-lklug-sinhala fonts-liberation fonts-lao \ fonts-khmeros-core fonts-kacst fonts-kacst-one \ fonts-guru-extra fonts-freefont-ttf fonts-dejavu-core && \ rm -rf /var/lib/apt/lists # Workaround: pulseaudio client library likes to remove /dev/shm/pulse-shm-* # files created by the host, causing sound to stop working. # To fix this, we either want to disable the shm or mount /dev/shm # in read-only mode when starting the container. RUN echo "enable-shm = no" >> /etc/pulse/client.conf # Mozilla Firefox # Deps: bzip2 libgtk-3-0 libdbus-glib-1-2 libxt6 ENV FIREFOX_VER 46.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 cd /tmp && \ mkdir /opt/mozilla && \ tar xf firefox.tar.bz2 -C /opt/mozilla/ && \ rm -f firefox.tar.bz2 # Make Mozilla Firefox grsec friendly # more info: https://en.wikibooks.org/wiki/Grsecurity/Application-specific_Settings#Firefox_.28or_Iceweasel_in_Debian.29 # # To build the Docker image, I currently had to disable the following grsec protections: # # grep -E "chroot_deny_chmod|chroot_deny_mknod|chroot_caps" /etc/sysctl.d/grsec.conf # kernel.grsecurity.chroot_deny_chmod = 0 # kernel.grsecurity.chroot_deny_mknod = 0 # kernel.grsecurity.chroot_caps = 0 (relates to a systemd package) # # (runtime only, since xattrs are not preserved in Docker's final image) # m: Disable MPROTECT // grsec: denied RWX mmap of # RUN setfattr -n user.pax.flags -v "m" /opt/mozilla/firefox/firefox # # (permanent change, by converting the binary headers PT_GNU_STACK into PT_PAX_FLAGS) # m: Disable MPROTECT // grsec: denied RWX mmap of RUN paxctl -c -v -m /opt/mozilla/firefox/firefox # Google Hangouts # Deps: libasound2 libgtk2.0-0 libpango1.0-0 libv4l-0 ADD https://dl.google.com/linux/direct/google-talkplugin_current_amd64.deb /tmp/google-talkplugin.deb RUN cd /tmp && \ dpkg -i google-talkplugin.deb && \ rm -f google-talkplugin.deb # Java x64 RE plugin # https://java.com/en/download/manual.jsp # https://www.java.com/verify ENV JAVA_VER 8 ENV JAVA_JRE_UVER 91 ENV JAVA_JRE_FVER 1.8.0_91 ENV JAVA_BUNDLE_ID 207765 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=$JAVA_BUNDLE_ID /tmp/jre.tar.gz RUN mkdir -p /opt/java/64 && \ tar xf /tmp/jre.tar.gz -C /opt/java/64/ && \ rm -f /tmp/jre.tar.gz && \ 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 # Define a user under which the Firefox will be running ENV USER user ENV UID 1000 ENV GROUPS video,audio ENV HOME /home/$USER RUN useradd -u $UID -m -d $HOME -s /usr/sbin/nologin -G $GROUPS $USER USER $USER WORKDIR $HOME # Java JRE requires /tmp directory to be writable VOLUME [ "/tmp" ] ENTRYPOINT [ "/opt/mozilla/firefox/firefox" ]