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.
Files
java_cet_plus_fonts/Dockerfile
T

14 lines
529 B
Docker

FROM openjdk:11
MAINTAINER Joakim Olsson <joakim@unbound.se>
RUN apt-get update \
&& apt-get install -y curl wget cabextract xfonts-utils libfontenc1 xfonts-encodings fonts-droid-fallback \
&& 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