Skip to content

Commit 1dcecb2

Browse files
committed
Update bbl path
1 parent 211a9a5 commit 1dcecb2

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

ci/Dockerfile

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -76,17 +76,11 @@ RUN \
7676

7777
# bbl and dependencies
7878
RUN \
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-
9084
RUN \
9185
wget --no-verbose "https://releases.hashicorp.com/terraform/${terraform_version}/terraform_${terraform_version}_linux_amd64.zip" -P /tmp && \
9286
cd /tmp && \

0 commit comments

Comments
 (0)