From 8dc703a1921e4f36cd6bb398a51320bd3bd72c2c Mon Sep 17 00:00:00 2001 From: Nidhi Soni <33543834+Nidhi251289@users.noreply.github.com> Date: Mon, 1 Jun 2026 10:23:57 +0200 Subject: [PATCH 1/6] Update Dockerfile version to v6.0.4 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9cb4f754..0fb42998 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ # Mendix Deployment Archive (aka mda file) # # Author: Mendix Digital Ecosystems, digitalecosystems@mendix.com -# Version: v6.0.3 +# Version: v6.0.4 ARG ROOTFS_IMAGE=mendix-rootfs:app ARG BUILDER_ROOTFS_IMAGE=mendix-rootfs:builder From e264e3440a47b362d95ec1110b97885706d3451b Mon Sep 17 00:00:00 2001 From: Nidhi Soni <33543834+Nidhi251289@users.noreply.github.com> Date: Mon, 1 Jun 2026 10:24:42 +0200 Subject: [PATCH 2/6] Update CF_BUILDPACK version in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b54e689b..3c034ea1 100644 --- a/README.md +++ b/README.md @@ -91,7 +91,7 @@ docker push When building the the `rootfs-builder.dockerfile` file, you can provide the following additional arguments: -- **CF_BUILDPACK** is a version of CloudFoundry buildpack. Defaults to `v5.0.32`. For stable pipelines, it's recommended to use a fixed **v5.0.31** version. Other Cloud Foundry buildpacks might not work with this version of Docker Buildpack. +- **CF_BUILDPACK** is a version of CloudFoundry buildpack. Defaults to `v5.0.33`. For stable pipelines, it's recommended to use a fixed **v5.0.31** version. Other Cloud Foundry buildpacks might not work with this version of Docker Buildpack. - **CF_BUILDPACK_URL** specifies the URL where the CF buildpack should be downloaded from (for example, a local mirror). Defaults to `https://github.com/mendix/cf-mendix-buildpack/releases/download/${CF_BUILDPACK}/cf-mendix-buildpack.zip`. Specifying **CF_BUILDPACK_URL** will override the version from **CF_BUILDPACK**. - **BUILDPACK_XTRACE** can be used to enable CF Buildpack [debug logging](https://github.com/mendix/cf-mendix-buildpack#logging-and-debugging). Set this variable to `true` to enable debug logging. From a5379543970fa5c8223625d1079e76d810dfdbb6 Mon Sep 17 00:00:00 2001 From: Nidhi Soni <33543834+Nidhi251289@users.noreply.github.com> Date: Mon, 1 Jun 2026 10:25:06 +0200 Subject: [PATCH 3/6] Update CF buildpack version to v5.0.33 --- rootfs-builder.dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rootfs-builder.dockerfile b/rootfs-builder.dockerfile index a04ed0df..d811d733 100644 --- a/rootfs-builder.dockerfile +++ b/rootfs-builder.dockerfile @@ -10,7 +10,7 @@ ENV LANG C.UTF-8 ENV LC_ALL C.UTF-8 # CF buildpack version -ARG CF_BUILDPACK=v5.0.32 +ARG CF_BUILDPACK=v5.0.33 # CF buildpack download URL ARG CF_BUILDPACK_URL=https://github.com/mendix/cf-mendix-buildpack/releases/download/${CF_BUILDPACK}/cf-mendix-buildpack.zip From 7eb93517eb5e387f759e227cb0ee6357cf93e597 Mon Sep 17 00:00:00 2001 From: Nidhi Soni <33543834+Nidhi251289@users.noreply.github.com> Date: Mon, 1 Jun 2026 10:25:55 +0200 Subject: [PATCH 4/6] Update Docker Buildpack version to 6.0.4 --- upgrading-from-v5.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/upgrading-from-v5.md b/upgrading-from-v5.md index 23e81631..8e2c0fc5 100644 --- a/upgrading-from-v5.md +++ b/upgrading-from-v5.md @@ -43,7 +43,7 @@ After the update, your pipeline might look like this: ```shell # Preparation steps # Downloag Docker Buildpack -DOCKER_BUILDPACK_VERSION=v6.0.3 +DOCKER_BUILDPACK_VERSION=v6.0.4 curl -LJ -o - https://github.com/mendix/docker-mendix-buildpack/archive/refs/tags/${DOCKER_BUILDPACK_VERSION}.tar.gz | tar --strip-components=1 -xvz # Checkout the Mendix app source git clone mendix-app-src From fe869cee4d9db4039507f1266d3832fe5527f8e3 Mon Sep 17 00:00:00 2001 From: Nidhi Soni <33543834+Nidhi251289@users.noreply.github.com> Date: Mon, 1 Jun 2026 11:15:56 +0200 Subject: [PATCH 5/6] Update base image in Dockerfile RedHat changed the endpoint from from ubi9/ubi-minimal:latest to ubi9-minimal:latest. https://catalog.redhat.com/en/software/containers/ubi9-minimal/61832888c0d15aff4912fe0d#get-this-image --- rootfs-app.dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rootfs-app.dockerfile b/rootfs-app.dockerfile index a2ba84f2..2b87a3fc 100644 --- a/rootfs-app.dockerfile +++ b/rootfs-app.dockerfile @@ -1,6 +1,6 @@ # Dockerfile to create a Mendix Docker image based on either the source code or # Mendix Deployment Archive (aka mda file) -FROM registry.access.redhat.com/ubi9/ubi-minimal:latest +FROM registry.access.redhat.com/ubi9-minimal:latest #This version does a full build originating from the Ubuntu Docker images LABEL Author="Mendix Digital Ecosystems" LABEL maintainer="digitalecosystems@mendix.com" From 9b03e16ec0861d92a8b9676c7f598c00d922aa02 Mon Sep 17 00:00:00 2001 From: Nidhi Soni <33543834+Nidhi251289@users.noreply.github.com> Date: Mon, 1 Jun 2026 11:21:19 +0200 Subject: [PATCH 6/6] Update base image in Dockerfile --- rootfs-builder.dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rootfs-builder.dockerfile b/rootfs-builder.dockerfile index d811d733..7e89f5de 100644 --- a/rootfs-builder.dockerfile +++ b/rootfs-builder.dockerfile @@ -1,6 +1,6 @@ # Dockerfile to create a Mendix Docker image based on either the source code or # Mendix Deployment Archive (aka mda file) -FROM registry.access.redhat.com/ubi9/ubi-minimal:latest +FROM registry.access.redhat.com/ubi9-minimal:latest #This version does a full build originating from the Ubuntu Docker images LABEL Author="Mendix Digital Ecosystems" LABEL maintainer="digitalecosystems@mendix.com"