Skip to content

Commit ca4273e

Browse files
authored
Merge pull request #232 from mendix/DES-7610-UpgradeCFBuildpack-v5.0.35
* Update cf-mendix-buildpack to 5.0.35 * Update docker-mendix-pack version to 6.0.7 * Upgrade Java version in Dockerfiles to include java-25-openjdk-headless
2 parents f11aa22 + 6acc1f2 commit ca4273e

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Mendix Deployment Archive (aka mda file)
33
#
44
# Author: Mendix Digital Ecosystems, digitalecosystems@mendix.com
5-
# Version: v6.0.6
5+
# Version: v6.0.7
66
ARG ROOTFS_IMAGE=mendix-rootfs:app
77
ARG BUILDER_ROOTFS_IMAGE=mendix-rootfs:builder
88

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ docker push <app-root-fs-image-tag>
9191

9292
When building the the `rootfs-builder.dockerfile` file, you can provide the following additional arguments:
9393

94-
- **CF_BUILDPACK** is a version of CloudFoundry buildpack. Defaults to `v5.0.34`. For stable pipelines, it's recommended to use a fixed **v5.0.34** version. Other Cloud Foundry buildpacks might not work with this version of Docker Buildpack.
94+
- **CF_BUILDPACK** is a version of CloudFoundry buildpack. Defaults to `v5.0.35`. For stable pipelines, it's recommended to use a fixed **v5.0.35** version. Other Cloud Foundry buildpacks might not work with this version of Docker Buildpack.
9595
- **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**.
9696
- **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.
9797

rootfs-app.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ENV LC_ALL C.UTF-8
1212
# install dependencies & remove package lists
1313
RUN microdnf update -y && \
1414
microdnf module enable nginx:1.26 -y && \
15-
microdnf install -y glibc-langpack-en python311 openssl nginx nginx-mod-stream java-11-openjdk-headless java-17-openjdk-headless java-21-openjdk-headless tzdata-java fontconfig binutils && \
15+
microdnf install -y glibc-langpack-en python311 openssl nginx nginx-mod-stream java-11-openjdk-headless java-17-openjdk-headless java-21-openjdk-headless java-25-openjdk-headless tzdata-java fontconfig binutils && \
1616
microdnf clean all && rm -rf /var/cache/yum
1717

1818
# Set the user ID

rootfs-builder.dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ENV LANG C.UTF-8
1010
ENV LC_ALL C.UTF-8
1111

1212
# CF buildpack version
13-
ARG CF_BUILDPACK=v5.0.34
13+
ARG CF_BUILDPACK=v5.0.35
1414
# CF buildpack download URL
1515
ARG CF_BUILDPACK_URL=https://github.com/mendix/cf-mendix-buildpack/releases/download/${CF_BUILDPACK}/cf-mendix-buildpack.zip
1616

@@ -20,7 +20,7 @@ ARG BUILDPACK_XTRACE
2020
# install dependencies & remove package lists
2121
RUN microdnf update -y && \
2222
microdnf module enable nginx:1.26 -y && \
23-
microdnf install -y wget glibc-langpack-en python311 openssl tar gzip unzip libpq nginx nginx-mod-stream binutils fontconfig findutils java-11-openjdk-headless java-17-openjdk-headless java-21-openjdk-headless && \
23+
microdnf install -y wget glibc-langpack-en python311 openssl tar gzip unzip libpq nginx nginx-mod-stream binutils fontconfig findutils java-11-openjdk-headless java-17-openjdk-headless java-21-openjdk-headless java-25-openjdk-headless && \
2424
microdnf remove -y /usr/bin/python && \
2525
microdnf clean all && rm -rf /var/cache/yum
2626

upgrading-from-v5.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ After the update, your pipeline might look like this:
4343
```shell
4444
# Preparation steps
4545
# Download Docker Buildpack
46-
DOCKER_BUILDPACK_VERSION=v6.0.6
46+
DOCKER_BUILDPACK_VERSION=v6.0.7
4747
curl -LJ -o - https://github.com/mendix/docker-mendix-buildpack/archive/refs/tags/${DOCKER_BUILDPACK_VERSION}.tar.gz | tar --strip-components=1 -xvz
4848
# Checkout the Mendix app source
4949
git clone <mendix-app-git> mendix-app-src

0 commit comments

Comments
 (0)