forked from alphagov/paas-docker-cloudfoundry-tools
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[cf-cli|bosh-cli-v2-cf-cli]: cf cli bump to 8.3.0
- cf cli: [8.3.0](https://github.com/cloudfoundry/cli/releases/tag/v8.3.0) we also remove 'app-autoscaler-plugin' as we do not use it fixup! ensure autoscaler plugin in not included
- Loading branch information
Showing
5 changed files
with
6 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,12 @@ | ||
FROM ruby:2.7-alpine3.11 | ||
|
||
ENV PACKAGES "unzip curl openssl ca-certificates git libc6-compat bash jq gettext make" | ||
ENV CF_CLI_VERSION "7.4.0" | ||
ENV CF_CLI_VERSION "8.3.0" | ||
ENV SPRUCE_VERSION "1.29.0" | ||
|
||
RUN apk add --no-cache $PACKAGES | ||
|
||
RUN curl -L "https://cli.run.pivotal.io/stable?release=linux64-binary&version=${CF_CLI_VERSION}" | tar -zx -C /usr/local/bin | ||
|
||
RUN cf install-plugin -f -r CF-Community app-autoscaler-plugin | ||
|
||
RUN curl -Lo /usr/local/bin/spruce https://github.com/geofffranks/spruce/releases/download/v${SPRUCE_VERSION}/spruce-linux-amd64 \ | ||
&& chmod +x /usr/local/bin/spruce |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters