File tree Expand file tree Collapse file tree 1 file changed +2
-8
lines changed
Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Original file line number Diff line number Diff line change @@ -76,17 +76,11 @@ RUN \
7676
7777# bbl and dependencies
7878RUN \
79- wget --no-verbose https://github.com/cloudfoundry/bosh-bootloader/releases/download/v${bbl_version}/bbl-v${bbl_version}_linux_x86-64 -P /tmp && \
80- mv /tmp/bbl-* /usr/local/bin/bbl && \
79+ curl https://github.com/cloudfoundry/bosh-bootloader/releases/download/v${bbl_version}/bbl-v${bbl_version}_linux_amd64 --silent --location --output /tmp/bbl && \
80+ mv /tmp/bbl /usr/local/bin/bbl && \
8181 cd /usr/local/bin && \
8282 chmod +x bbl
8383
84- RUN \
85- wget --no-verbose https://github.com/cloudfoundry/bosh-bootloader/archive/v${bbl_version}.tar.gz -P /tmp && \
86- mkdir -p /var/repos/bosh-bootloader && \
87- tar xvf /tmp/v${bbl_version}.tar.gz --strip-components=1 -C /var/repos/bosh-bootloader && \
88- rm -rf /tmp/*
89-
9084RUN \
9185 wget --no-verbose "https://releases.hashicorp.com/terraform/${terraform_version}/terraform_${terraform_version}_linux_amd64.zip" -P /tmp && \
9286 cd /tmp && \
You can’t perform that action at this time.
0 commit comments