From 063e6012506db820e14b24abe7bff96337f70fc4 Mon Sep 17 00:00:00 2001 From: Christian Date: Wed, 8 Nov 2017 16:00:20 +0100 Subject: [PATCH] add firefox alpine (#307) --- firefox/alpine/Dockerfile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 firefox/alpine/Dockerfile diff --git a/firefox/alpine/Dockerfile b/firefox/alpine/Dockerfile new file mode 100644 index 0000000..86241b2 --- /dev/null +++ b/firefox/alpine/Dockerfile @@ -0,0 +1,14 @@ +FROM alpine:latest + +LABEL maintainer "Christian Koep " + +RUN apk add --no-cache \ + alsa-lib \ + ca-certificates \ + firefox-esr \ + hicolor-icon-theme \ + mesa-dri-intel \ + mesa-gl \ + ttf-dejavu + +ENTRYPOINT ["/usr/bin/firefox"]