From 90c638ed28cab8a52c6c25f5636045b59dc705f6 Mon Sep 17 00:00:00 2001 From: Ivan Dimitrov <32311354+IvanBorislavovDimitrov@users.noreply.github.com> Date: Wed, 3 Sep 2025 17:29:42 +0300 Subject: [PATCH 1/2] Update version of multiapps plugin to 3.7.0 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 12a0379..82f4b06 100644 --- a/Dockerfile +++ b/Dockerfile @@ -31,7 +31,7 @@ RUN curl https://cli.btp.cloud.sap/btpcli-install.sh | bash -s -- -o "${INSTALL_ USER piper WORKDIR ${USER_HOME} -ARG MTA_PLUGIN_VERSION=3.6.0 +ARG MTA_PLUGIN_VERSION=3.7.0 ARG MTA_PLUGIN_URL=https://github.com/cloudfoundry/multiapps-cli-plugin/releases/download/v${MTA_PLUGIN_VERSION}/multiapps-plugin.linux64 ENV MULTIAPPS_DISABLE_UPLOAD_PROGRESS_BAR=true ARG CSPUSH_PLUGIN_VERSION=1.3.2 From 89584848f31325c7eebc69478be6a9109a1caaa1 Mon Sep 17 00:00:00 2001 From: IvanBorislavovDimitrov Date: Fri, 5 Sep 2025 14:01:15 +0300 Subject: [PATCH 2/2] Add multiapps cli plugin user_agent header suffix --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 82f4b06..9e6c433 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,7 +20,7 @@ RUN apt-get update && \ ARG USER_HOME=/home/piper RUN addgroup -gid 1000 piper && \ useradd piper --uid 1000 --gid 1000 --shell /bin/bash --home-dir "${USER_HOME}" --create-home - + ARG INSTALL_DIR=/usr/local/bin RUN curl --location --silent "https://packages.cloudfoundry.org/stable?release=linux64-binary&version=v8&source=github" | tar -zx -C "${INSTALL_DIR}" && \ cf --version @@ -31,6 +31,8 @@ RUN curl https://cli.btp.cloud.sap/btpcli-install.sh | bash -s -- -o "${INSTALL_ USER piper WORKDIR ${USER_HOME} +# Set user agent header suffix for multiapps CLI plugin +ENV MULTIAPPS_USER_AGENT_SUFFIX="ppiper/cf-cli" ARG MTA_PLUGIN_VERSION=3.7.0 ARG MTA_PLUGIN_URL=https://github.com/cloudfoundry/multiapps-cli-plugin/releases/download/v${MTA_PLUGIN_VERSION}/multiapps-plugin.linux64 ENV MULTIAPPS_DISABLE_UPLOAD_PROGRESS_BAR=true