Skip to content

Commit 14a5dc9

Browse files
authored
Merge pull request #230 from mendix/DES-7514--UpgradeCFBUildpack
Upgrade cf buildpack to v5.0.33
2 parents 61e52cf + 9b03e16 commit 14a5dc9

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.3
5+
# Version: v6.0.4
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.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.
94+
- **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.
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
@@ -1,6 +1,6 @@
11
# Dockerfile to create a Mendix Docker image based on either the source code or
22
# Mendix Deployment Archive (aka mda file)
3-
FROM registry.access.redhat.com/ubi9/ubi-minimal:latest
3+
FROM registry.access.redhat.com/ubi9-minimal:latest
44
#This version does a full build originating from the Ubuntu Docker images
55
LABEL Author="Mendix Digital Ecosystems"
66
LABEL maintainer="digitalecosystems@mendix.com"

rootfs-builder.dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Dockerfile to create a Mendix Docker image based on either the source code or
22
# Mendix Deployment Archive (aka mda file)
3-
FROM registry.access.redhat.com/ubi9/ubi-minimal:latest
3+
FROM registry.access.redhat.com/ubi9-minimal:latest
44
#This version does a full build originating from the Ubuntu Docker images
55
LABEL Author="Mendix Digital Ecosystems"
66
LABEL maintainer="digitalecosystems@mendix.com"
@@ -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.32
13+
ARG CF_BUILDPACK=v5.0.33
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

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
# Downloag Docker Buildpack
46-
DOCKER_BUILDPACK_VERSION=v6.0.3
46+
DOCKER_BUILDPACK_VERSION=v6.0.4
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)