mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 11:31:49 +01:00
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:
parent
90812d8a17
commit
868b5f1a8c
|
@ -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" ]
|
||||||
|
|
Loading…
Reference in New Issue
Block a user