mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-27 04:16:45 +01:00
868b5f1a8c
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
33 lines
981 B
Docker
33 lines
981 B
Docker
FROM debian:sid-slim
|
|
LABEL maintainer "Jessie Frazelle <jess@linux.com>"
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
dirmngr \
|
|
gnupg \
|
|
--no-install-recommends \
|
|
&& 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 \
|
|
&& apt-get update && apt-get install -y \
|
|
apulse \
|
|
ca-certificates \
|
|
firefox \
|
|
hicolor-icon-theme \
|
|
libasound2 \
|
|
libgl1-mesa-dri \
|
|
libgl1-mesa-glx \
|
|
libpulse0 \
|
|
--no-install-recommends \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
ENV LANG en-US
|
|
|
|
COPY local.conf /etc/fonts/local.conf
|
|
|
|
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" ]
|