summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--docker/core/Dockerfile4
-rw-r--r--docker/healthcheck/Dockerfile4
2 files changed, 4 insertions, 4 deletions
diff --git a/docker/core/Dockerfile b/docker/core/Dockerfile
index d48980de..52282813 100644
--- a/docker/core/Dockerfile
+++ b/docker/core/Dockerfile
@@ -5,8 +5,8 @@ ARG OPENSTACK_TAG=stable/queens
ARG OPNFV_TAG=master
RUN apk --no-cache add --update python py-pip bash git grep && \
- git clone https://gerrit.opnfv.org/gerrit/functest-kubernetes /src/functest-kubernetes && \
- (cd /src/functest-kubernetes && git fetch origin $BRANCH && git checkout FETCH_HEAD) && \
+ git clone --depth 1 https://gerrit.opnfv.org/gerrit/functest-kubernetes /src/functest-kubernetes && \
+ (cd /src/functest-kubernetes && git fetch --tags origin $BRANCH && git checkout FETCH_HEAD) && \
pip install \
-chttps://git.opnfv.org/functest/plain/upper-constraints.txt?h=$OPNFV_TAG \
-chttps://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt?h=$OPENSTACK_TAG \
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 && \