diff options
Diffstat (limited to 'docker/healthcheck/Dockerfile')
-rw-r--r-- | docker/healthcheck/Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docker/healthcheck/Dockerfile b/docker/healthcheck/Dockerfile index 59b1941a..e47068c4 100644 --- a/docker/healthcheck/Dockerfile +++ b/docker/healthcheck/Dockerfile @@ -7,8 +7,8 @@ RUN apk --no-cache add --update make py-pip bash git go \ libffi libssl1.0 libjpeg-turbo && \ apk --no-cache add --virtual .build-deps --update \ python-dev libffi-dev openssl-dev libjpeg-turbo-dev && \ - git clone https://github.com/kubernetes/kubernetes /src/k8s.io/kubernetes && \ - (cd /src/k8s.io/kubernetes && git checkout $K8S_TAG && \ + git clone --depth 1 https://github.com/kubernetes/kubernetes /src/k8s.io/kubernetes && \ + (cd /src/k8s.io/kubernetes && git fetch --tags origin $K8S_TAG && git checkout FETCH_HEAD && \ # Replace the amd64 with arm64 when building e2e.test on arm platform. if [ "$(uname -m)" = "aarch64" ]; then sed -i "s/amd64/arm64/g" ./test/images/clusterapi-tester/pod.yaml ; fi && \ make kubectl ginkgo && \ |