We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e66af2e + 883ffc8 commit 13a509cCopy full SHA for 13a509c
images/k8s-cloud-builder/Dockerfile
@@ -81,6 +81,8 @@ ENV PATH="${GOOGLE_DIR}/google-cloud-sdk/bin:${PATH}"
81
82
# Install docker cli
83
# https://docs.docker.com/install/linux/docker-ce/debian/
84
+# Pin to version 24.0.x for API version 1.43 compatibility with DinD in CI
85
+# See: https://github.com/kubernetes/release/issues/4180
86
RUN curl -fsSL https://download.docker.com/linux/debian/gpg | apt-key add - \
87
&& apt-key fingerprint 0EBFCD88 \
88
&& add-apt-repository \
@@ -89,7 +91,7 @@ RUN curl -fsSL https://download.docker.com/linux/debian/gpg | apt-key add - \
89
91
stable" \
90
92
&& apt-get -y update \
93
&& apt-get -qqy install \
- docker-ce-cli
94
+ docker-ce-cli=5:24.0.*
95
96
# Cleanup a bit
97
RUN apt-get -qqy remove \
0 commit comments