Skip to content

Commit

Permalink
Correct google cloud-sdk download URL protocol to https from http (#1489
Browse files Browse the repository at this point in the history
)

Recently, we have been observing failures to build our integration
tests docker images precisely at the step where we download the
google cloud-sdk library. It has been observed that the previously
working http URL is no longer available and we need to use a https
URL. This PR corrects the same for successful build of the image.

closes: #1488
  • Loading branch information
pankajkoti authored Mar 11, 2024
1 parent 396d16f commit 2c16514
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .circleci/integration-tests/Dockerfile.astro_cloud
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ RUN apt-get update -y \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* \
&& apt-get install -y curl gnupg \
&& echo "deb [signed-by=/usr/share/keyrings/cloud.google.gpg] http://packages.cloud.google.com/apt cloud-sdk main" | tee -a /etc/apt/sources.list.d/google-cloud-sdk.list \
&& echo "deb [signed-by=/usr/share/keyrings/cloud.google.gpg] https://packages.cloud.google.com/apt cloud-sdk main" | tee -a /etc/apt/sources.list.d/google-cloud-sdk.list \
&& curl https://packages.cloud.google.com/apt/doc/apt-key.gpg | apt-key --keyring /usr/share/keyrings/cloud.google.gpg add - \
&& apt-get update -y \
&& apt-get install -y \
Expand Down

0 comments on commit 2c16514

Please sign in to comment.