From 9833afee93c2d4c88843542a208b20258769cea8 Mon Sep 17 00:00:00 2001 From: leonardomendix Date: Tue, 14 Jul 2026 10:03:21 +0200 Subject: [PATCH] chore: update mxbuild dockerfile --- automation/utils/docker/mxbuild.Dockerfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/automation/utils/docker/mxbuild.Dockerfile b/automation/utils/docker/mxbuild.Dockerfile index ba69d1f0a7..30784783aa 100644 --- a/automation/utils/docker/mxbuild.Dockerfile +++ b/automation/utils/docker/mxbuild.Dockerfile @@ -1,8 +1,10 @@ -FROM --platform=$BUILDPLATFORM eclipse-temurin:17-jdk-jammy +FROM --platform=$BUILDPLATFORM eclipse-temurin:21-jdk-jammy ARG MENDIX_VERSION ARG BUILDPLATFORM +ENV LD_PRELOAD=libfontconfig.so.1 + SHELL ["/bin/bash", "-c"] RUN \ echo "Downloading mxbuild ${MENDIX_VERSION} and docker building for ${BUILDPLATFORM}..." \ @@ -25,7 +27,7 @@ echo "Downloading mxbuild ${MENDIX_VERSION} and docker building for ${BUILDPLATF && rm /tmp/mxbuild.tar.gz && \ \ apt-get update -qqy && \ - apt-get install -qqy libicu70 libgdiplus && \ + apt-get install -qqy libicu70 libgdiplus libfontconfig1 && \ apt-get -qqy remove --auto-remove wget && \ apt-get clean && \ \