summaryrefslogtreecommitdiffstats
path: root/docker/healthcheck/Dockerfile
diff options
context:
space:
mode:
authorCédric Ollivier <cedric.ollivier@orange.com>2018-09-03 20:54:58 +0200
committerCédric Ollivier <cedric.ollivier@orange.com>2018-09-03 21:07:32 +0200
commit951fc46b7499d9f230c6e8f0e1629ac2325c5ad7 (patch)
treed3e92278aea5df2a8f42184245fcfde27170c817 /docker/healthcheck/Dockerfile
parent0afa73e878f1d2c3f5d493b23ebc68f14f302166 (diff)
Rewrite git clones
Change-Id: I04c60b6c10ccd7b7e939002505e6e43e9c98eae7 Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com> (cherry picked from commit ca3c9cf6f57c87aee8c6f0b93f70d84e3df736de)
Diffstat (limited to 'docker/healthcheck/Dockerfile')
-rw-r--r--docker/healthcheck/Dockerfile6
1 files changed, 4 insertions, 2 deletions
diff --git a/docker/healthcheck/Dockerfile b/docker/healthcheck/Dockerfile
index 2ea1e762..2007b726 100644
--- a/docker/healthcheck/Dockerfile
+++ b/docker/healthcheck/Dockerfile
@@ -7,8 +7,10 @@ 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 --depth 1 https://github.com/kubernetes/kubernetes /src/k8s.io/kubernetes && \
- (cd /src/k8s.io/kubernetes && git fetch --depth 1 --tags origin $K8S_TAG && git checkout FETCH_HEAD && \
+ git init /src/k8s.io/kubernetes && \
+ (cd /src/k8s.io/kubernetes && \
+ git fetch --tags https://github.com/kubernetes/kubernetes $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 && \