mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 19:32:30 +01:00
15 lines
248 B
Docker
15 lines
248 B
Docker
|
FROM alpine:latest
|
||
|
|
||
|
LABEL maintainer "Christian Koep <christiankoep@gmail.com>"
|
||
|
|
||
|
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"]
|