This repository has been archived on 2026-03-07. You can view files and clone it. You cannot open issues or pull requests or push a commit.
2019-11-28 23:08:35 +01:00
|
|
|
FROM openjdk:11
|
2018-09-21 21:26:22 +02:00
|
|
|
MAINTAINER Joakim Olsson <joakim@unbound.se>
|
|
|
|
|
|
|
|
|
|
RUN apt-get update \
|
2018-10-14 20:22:50 +02:00
|
|
|
&& apt-get install -y curl wget cabextract xfonts-utils libfontenc1 xfonts-encodings fonts-droid-fallback \
|
2018-09-21 21:26:22 +02:00
|
|
|
&& rm -r /var/lib/apt/lists/*
|
|
|
|
|
|
2024-02-23 16:59:36 +00:00
|
|
|
RUN curl -SL http://ftp.se.debian.org/debian/pool/contrib/m/msttcorefonts/ttf-mscorefonts-installer_3.8.1_all.deb \
|
2018-09-21 21:26:22 +02:00
|
|
|
-o /tmp/msttfont.deb \
|
|
|
|
|
&& dpkg --install /tmp/msttfont.deb \
|
|
|
|
|
&& rm /tmp/msttfont.deb
|
|
|
|
|
|
|
|
|
|
RUN echo "Europe/Stockholm" > /etc/timezone; dpkg-reconfigure -f noninteractive tzdata
|