Skip to content

Commit d5dd1a8

Browse files
authored
Merge pull request #54 from SAP/inc-cfcli-v8-mta-v3-add-jp
Update to cf-cli v8, mta v3.0.1, jq
2 parents 4465275 + e107dd3 commit d5dd1a8

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

Dockerfile

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,20 +7,22 @@ SHELL ["/bin/bash", "-o", "pipefail", "-c"]
77

88
# ps needs to be available to be able to be used in docker.inside, see https://issues.jenkins-ci.org/browse/JENKINS-40101
99
RUN apt-get update && \
10-
apt-get install -y --no-install-recommends procps && \
10+
apt-get install -y --no-install-recommends \
11+
jq \
12+
procps && \
1113
rm -rf /var/lib/apt/lists/*
1214

1315
# add group & user
1416
ARG USER_HOME=/home/piper
1517
RUN addgroup -gid 1000 piper && \
1618
useradd piper --uid 1000 --gid 1000 --shell /bin/bash --home-dir "${USER_HOME}" --create-home && \
17-
curl --location --silent "https://packages.cloudfoundry.org/stable?release=linux64-binary&version=v7&source=github" | tar -zx -C /usr/local/bin && \
19+
curl --location --silent "https://packages.cloudfoundry.org/stable?release=linux64-binary&version=v8&source=github" | tar -zx -C /usr/local/bin && \
1820
cf --version
1921

2022
USER piper
2123
WORKDIR ${USER_HOME}
2224

23-
ARG MTA_PLUGIN_VERSION=2.7.0
25+
ARG MTA_PLUGIN_VERSION=3.0.1
2426
ARG MTA_PLUGIN_URL=https://github.com/cloudfoundry-incubator/multiapps-cli-plugin/releases/download/v${MTA_PLUGIN_VERSION}/multiapps-plugin.linux64
2527
ARG CSPUSH_PLUGIN_VERSION=1.3.2
2628
ARG CSPUSH_PLUGIN_URL=https://github.com/dawu415/CF-CLI-Create-Service-Push-Plugin/releases/download/${CSPUSH_PLUGIN_VERSION}/CreateServicePushPlugin.linux64

0 commit comments

Comments
 (0)