From 0f82de10e4aaa8b78d7f79cf725fd1fad1dc85e0 Mon Sep 17 00:00:00 2001 From: Tianon Gravi Date: Thu, 20 Aug 2015 13:04:16 -0700 Subject: [PATCH] Add libfontconfig1 explicitly to openjdk-8-jre for https://bugs.debian.org/793210 --- openjdk-8-jre/Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/openjdk-8-jre/Dockerfile b/openjdk-8-jre/Dockerfile index dfd8e581..76cf51a1 100644 --- a/openjdk-8-jre/Dockerfile +++ b/openjdk-8-jre/Dockerfile @@ -29,5 +29,9 @@ RUN set -x \ # see CA_CERTIFICATES_JAVA_VERSION notes above RUN /var/lib/dpkg/info/ca-certificates-java.postinst configure +# see https://bugs.debian.org/793210 +# and https://github.com/docker-library/java/issues/46#issuecomment-119026586 +RUN apt-get update && apt-get install -y --no-install-recommends libfontconfig1 && rm -rf /var/lib/apt/lists/* + # If you're reading this and have any feedback on how this image could be # improved, please open an issue or a pull request so we can discuss it!