Remove cache dir and force /src as src dst dir
[functest-kubernetes.git] / docker / core / Dockerfile
index 5228281..760d614 100644 (file)
@@ -1,18 +1,23 @@
-FROM alpine:3.7
+FROM golang:1.11-alpine3.9
 
-ARG BRANCH=master
-ARG OPENSTACK_TAG=stable/queens
-ARG OPNFV_TAG=master
+ARG BRANCH=stable/hunter
+ARG OPENSTACK_TAG=stable/rocky
+ARG OPNFV_TAG=stable/hunter
 
-RUN apk --no-cache add --update python py-pip bash git grep && \
-    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 \
+RUN apk --no-cache add --update python py-pip bash git grep mailcap && \
+    apk --no-cache add --virtual .build-deps --update \
+        python-dev build-base && \
+    git init /src/functest-kubernetes && \
+    (cd /src/functest-kubernetes && \
+        git fetch --tags https://gerrit.opnfv.org/gerrit/functest-kubernetes $BRANCH && \
+        git checkout FETCH_HEAD) && \
+    pip install --no-cache-dir --src /src \
         -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 \
+        -chttps://opendev.org/openstack/requirements/raw/branch/$OPENSTACK_TAG/upper-constraints.txt \
         /src/functest-kubernetes && \
     rm -rf /src/functest-kubernetes && \
     bash -c "mkdir -p /var/lib/xtesting /home/opnfv" && \
-    ln -s /var/lib/xtesting /home/opnfv/functest
+    ln -s /var/lib/xtesting /home/opnfv/functest && \
+    apk del .build-deps
 COPY logging.ini /usr/lib/python2.7/site-packages/xtesting/ci/logging.ini
 CMD ["run_tests", "-t", "all"]