JetBrains / teamcity-docker-agent

TeamCity agent docker image sources
https://hub.docker.com/r/jetbrains/teamcity-agent/
Apache License 2.0
77 stars 64 forks source link

Missing fontconfig package in linux #56

Closed Jarris3154 closed 5 years ago

Jarris3154 commented 5 years ago

When the code contains Excel generate, the build will fail with following error message:

image

I guess it's because the package fontconfig is missing in the ubuntu.

I work with this script to install fontconfig and resolved the problem, so I strongly suggest to add the following command into the container based ubuntu.

docker exec -it {{agentContainerId}} bash
apt-get install -y fontconfig

Here is the link I get solutions from: https://github.com/AdoptOpenJDK/openjdk-build/issues/693

kir commented 5 years ago

Thanks, I've created https://youtrack.jetbrains.com/issue/TW-61230 issue in our tracker for this task.