diff --git a/Dockerfile b/Dockerfile index 0fb42998..91f45bcf 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.4 +# Version: v6.0.6 ARG ROOTFS_IMAGE=mendix-rootfs:app ARG BUILDER_ROOTFS_IMAGE=mendix-rootfs:builder diff --git a/README.md b/README.md index 3c034ea1..eb8518f4 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.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** 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. - **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. diff --git a/rootfs-builder.dockerfile b/rootfs-builder.dockerfile index 7e89f5de..223c6b07 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.33 +ARG CF_BUILDPACK=v5.0.34 # CF buildpack download URL ARG CF_BUILDPACK_URL=https://github.com/mendix/cf-mendix-buildpack/releases/download/${CF_BUILDPACK}/cf-mendix-buildpack.zip diff --git a/upgrading-from-v5.md b/upgrading-from-v5.md index 8e2c0fc5..46185f78 100644 --- a/upgrading-from-v5.md +++ b/upgrading-from-v5.md @@ -42,8 +42,8 @@ After the update, your pipeline might look like this: ```shell # Preparation steps -# Downloag Docker Buildpack -DOCKER_BUILDPACK_VERSION=v6.0.4 +# Download Docker Buildpack +DOCKER_BUILDPACK_VERSION=v6.0.6 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