Docker: Install git in grafana/grafana-ci-deploy image (#52466)

* Install git in grafana/grafana-ci-deploy image

* Bump grafana/grafana-ci-deploy version
This commit is contained in:
Dimitris Sotirakis
2022-07-19 11:04:16 -04:00
committed by GitHub
parent e0a58300ac
commit 529289268b
3 changed files with 27 additions and 27 deletions
+1 -1
View File
@@ -27,7 +27,7 @@ ARG DEBIAN_FRONTEND=noninteractive \
GOOGLE_SDK_CHECKSUM=374f960c9f384f88b6fc190b268ceac5dcad777301390107af63782bfb5ecbc7
# Need procps for pkill utility, which is used by the build pipeline tool to restart the GPG agent
RUN apt update && apt install -yq curl python3-pip procps && pip3 install -U awscli crcmod && \
RUN apt update && apt install -yq git curl python3-pip procps && pip3 install -U awscli crcmod && \
curl -fLO https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk-${GOOGLE_SDK_VERSION}-linux-x86_64.tar.gz && \
echo "${GOOGLE_SDK_CHECKSUM} google-cloud-sdk-${GOOGLE_SDK_VERSION}-linux-x86_64.tar.gz" | sha256sum --check --status && \
tar xzf google-cloud-sdk-${GOOGLE_SDK_VERSION}-linux-x86_64.tar.gz -C /opt && \
+1 -1
View File
@@ -2,7 +2,7 @@ load('scripts/drone/vault.star', 'from_secret', 'github_token', 'pull_secret', '
grabpl_version = 'v2.9.52'
build_image = 'grafana/build-container:1.5.7'
publish_image = 'grafana/grafana-ci-deploy:1.3.1'
publish_image = 'grafana/grafana-ci-deploy:1.3.2'
deploy_docker_image = 'us.gcr.io/kubernetes-dev/drone/plugins/deploy-image'
alpine_image = 'alpine:3.15'
curl_image = 'byrnedo/alpine-curl:0.1.8'