1
0
Fork 0

Initial import

This commit is contained in:
Daniele Tricoli 2018-06-11 00:37:01 +02:00
commit d0646229d2
1 changed files with 20 additions and 0 deletions

20
Dockerfile Normal file
View File

@ -0,0 +1,20 @@
FROM debian:stretch-slim
LABEL maintainer "Daniele Tricoli <eriol@mornie.org>"
ENV LAST_UPDATE 2018-06-11
# Directory creation is a workaround for Debian bug 863199.
# See https://bugs.debian.org/863199
RUN mkdir -p /usr/share/man/man1 \
&& apt update \
&& apt install -qqy \
ca-certificates \
firefox-esr \
icedtea-plugin \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/* \
&& apt -qqy clean
ENV LANG en-US
ENTRYPOINT ["/usr/bin/firefox"]