Initial version

This commit is contained in:
2018-09-21 21:26:22 +02:00
commit d4e84ddf41
+14
View File
@@ -0,0 +1,14 @@
FROM java:8
MAINTAINER Joakim Olsson <joakim@unbound.se>
RUN apt-get update \
&& apt-get install -y cabextract xfonts-utils libfontenc1 libxfont1 xfonts-encodings fonts-droid \
&& rm -r /var/lib/apt/lists/*
RUN curl -SL http://ftp.se.debian.org/debian/pool/contrib/m/msttcorefonts/ttf-mscorefonts-installer_3.6_all.deb \
-o /tmp/msttfont.deb \
&& dpkg --install /tmp/msttfont.deb \
&& rm /tmp/msttfont.deb
RUN echo "Europe/Stockholm" > /etc/timezone; dpkg-reconfigure -f noninteractive tzdata