Apply Rally patch (switch to threading for tasks)
[functest-kubernetes.git] / docker / core / Dockerfile
index d48980d..747750d 100644 (file)
@@ -1,18 +1,32 @@
-FROM alpine:3.7
+FROM golang:1.13-alpine3.10
 
-ARG BRANCH=master
-ARG OPENSTACK_TAG=stable/queens
-ARG OPNFV_TAG=master
+ARG BRANCH=stable/jerma
+ARG OPENSTACK_TAG=stable/train
+ARG OPNFV_TAG=stable/jerma
 
-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) && \
-    pip install \
+COPY Try-a-quick-fix-vs-asynchronuous-issues.patch /tmp/Try-a-quick-fix-vs-asynchronuous-issues.patch
+COPY Switch-to-threading.Thread-for-Rally-tasks.patch /tmp/Switch-to-threading.Thread-for-Rally-tasks.patch
+RUN apk --no-cache add --update python3 bash git grep libffi openssl mailcap && \
+    apk --no-cache add --virtual .build-deps --update \
+        python3-dev build-base libffi-dev openssl-dev && \
+    git init /src/functest-kubernetes && \
+    (cd /src/functest-kubernetes && \
+        git fetch --tags https://gerrit.opnfv.org/gerrit/functest-kubernetes $BRANCH && \
+        git checkout FETCH_HEAD) && \
+    pip3 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 && \
+    (cd /src/rally && patch -p1 < /tmp/Switch-to-threading.Thread-for-Rally-tasks.patch) && \
+    (cd /usr/lib/python3.7/site-packages/xrally_kubernetes/ && \
+        patch -p2 < /tmp/Try-a-quick-fix-vs-asynchronuous-issues.patch) && \
+    rm -rf /src/functest-kubernetes /tmp/Switch-to-threading.Thread-for-Rally-tasks.patch && \
     bash -c "mkdir -p /var/lib/xtesting /home/opnfv" && \
-    ln -s /var/lib/xtesting /home/opnfv/functest
-COPY logging.ini /usr/lib/python2.7/site-packages/xtesting/ci/logging.ini
+    ln -s /var/lib/xtesting /home/opnfv/functest && \
+    mkdir -p /etc/rally && \
+    printf "[database]\nconnection = 'sqlite:////var/lib/rally/database/rally.sqlite'" > /etc/rally/rally.conf && \
+    mkdir -p /var/lib/rally/database && rally db create && \
+    rm /tmp/Try-a-quick-fix-vs-asynchronuous-issues.patch && \
+    apk del .build-deps
+COPY logging.ini /usr/lib/python3.7/site-packages/xtesting/ci/logging.ini
 CMD ["run_tests", "-t", "all"]