Skip to content
Advertisement

Docker and Java – FontConfiguration issue

We’ve got a Java application that generates word documents using a 3rd party (Asposee but I don’t think it matters here). The app is built from a simple Docker file:

JavaScript

When we build the application locally (mvn package then docker build) and run the application inside k8s it works well.

However, when we build the image in our CI/CD pipeline with Jenkins we get a runtime exception when running through a specific process which apparently requires additional fonts:

JavaScript

In that case the project is buit in Jenkins, compiled by the docker image maven:3.5.4-jdk-10-slim.

I’ve checked both jar files (locally and from jenkins) and the class files are the same (as expected).

In both cases it’s the same base image so I don’t understand what could be the difference. Is something different in Docker when building locally vs inside another Docker container?

EDIT

We’ve looked into both docker images and found the following difference.

Since locally built image ls -l /usr/lib returns:

JavaScript

But inside Jenkins built image ls -l /usr/lib returns:

JavaScript

This is really puzzling as I thought Docker would always produce the same image from identical Dockerfiles

Advertisement

Answer

I think we found the problem.

When running on Jenkins we use the docker:dind (Docker inside docker) Docker image to provide the docker command in the build. This image is based on Alpine linux. When running docker info we get the following:

On Mac:

JavaScript

On Jenkins:

JavaScript

Alpine linux must be missing those fonts. We fixed the problem by manually installing them in the Dockerfile:

JavaScript

Not sure this is the minimum required libraries but those did the trick 😀

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement