Skip to content

Commit 120525b

Browse files
committed
update cf cli to v7
- update mta plugin to 2.5.1 - remove create service plugin as contained in cf cli v7
1 parent 4377af4 commit 120525b

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

Dockerfile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,18 @@ RUN apt-get update && \
1414
ARG USER_HOME=/home/piper
1515
RUN addgroup -gid 1000 piper && \
1616
useradd piper --uid 1000 --gid 1000 --shell /bin/bash --home-dir "${USER_HOME}" --create-home && \
17-
curl --location --silent "https://cli.run.pivotal.io/stable?release=linux64-binary&source=github" | tar -zx -C /usr/local/bin && \
17+
curl --location --silent "https://packages.cloudfoundry.org/stable?release=linux64-binary&version=v7&source=github" | tar -zx -C /usr/local/bin && \
1818
cf --version
1919

2020
USER piper
2121
WORKDIR ${USER_HOME}
2222

23-
ARG MTA_PLUGIN_VERSION=2.4.1
23+
ARG MTA_PLUGIN_VERSION=2.5.1
2424
ARG MTA_PLUGIN_URL=https://github.com/cloudfoundry-incubator/multiapps-cli-plugin/releases/download/v${MTA_PLUGIN_VERSION}/mta_plugin_linux_amd64
2525

2626
RUN cf add-plugin-repo CF-Community https://plugins.cloudfoundry.org && \
2727
cf install-plugin blue-green-deploy -f -r CF-Community && \
2828
cf install-plugin ${MTA_PLUGIN_URL} -f && \
29-
cf install-plugin Create-Service-Push -f -r CF-Community && \
3029
cf plugins
3130

3231
# allow anybody to read/write/exec at HOME

0 commit comments

Comments
 (0)