Allow ALSA and pulseaudio sound (#410). Fix tab crashes (#376, #360). (#429)

Sets browser.tabs.remote.autostart = false to avoid tab crashes. #376, #360
Adds apulse to provide fake pulseaudio to allow ALSA sound again. #410
Adds libpulse0 to allow pulseaudio sound. #issuecomment-422969073
ENTRYPOINT wrapper script to run with or without apulse wrapper, depending on given or missing /dev/dri
This commit is contained in:
mviereck 2018-10-05 01:17:07 +02:00 committed by Jess Frazelle
parent 90812d8a17
commit 868b5f1a8c

View File

@ -8,12 +8,14 @@ RUN apt-get update && apt-get install -y \
&& apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 0AB215679C571D1C8325275B9BDB3D89CE49EC21 \ && apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 0AB215679C571D1C8325275B9BDB3D89CE49EC21 \
&& echo "deb http://ppa.launchpad.net/mozillateam/firefox-next/ubuntu xenial main" >> /etc/apt/sources.list.d/firefox.list \ && echo "deb http://ppa.launchpad.net/mozillateam/firefox-next/ubuntu xenial main" >> /etc/apt/sources.list.d/firefox.list \
&& apt-get update && apt-get install -y \ && apt-get update && apt-get install -y \
apulse \
ca-certificates \ ca-certificates \
firefox \ firefox \
hicolor-icon-theme \ hicolor-icon-theme \
libasound2 \ libasound2 \
libgl1-mesa-dri \ libgl1-mesa-dri \
libgl1-mesa-glx \ libgl1-mesa-glx \
libpulse0 \
--no-install-recommends \ --no-install-recommends \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*
@ -21,4 +23,10 @@ ENV LANG en-US
COPY local.conf /etc/fonts/local.conf COPY local.conf /etc/fonts/local.conf
ENTRYPOINT [ "/usr/bin/firefox" ] RUN echo 'pref("browser.tabs.remote.autostart", false);' >> /etc/firefox/syspref.js
RUN echo "#! /bin/bash \n\
[ -e /dev/snd ] && exec apulse firefox || exec firefox \n\
" >/usr/local/bin/startfirefox && chmod +x /usr/local/bin/startfirefox
ENTRYPOINT [ "/usr/local/bin/startfirefox" ]