mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 11:31:49 +01:00
963d37174d
Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
31 lines
836 B
Docker
31 lines
836 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
|
|
|
|
COPY entrypoint.sh /usr/bin/startfirefox
|
|
|
|
ENTRYPOINT [ "startfirefox" ]
|