Apply Rally patch (switch to threading for tasks)
[functest-kubernetes.git] / docker / core / Dockerfile
1 FROM golang:1.13-alpine3.10
2
3 ARG BRANCH=stable/jerma
4 ARG OPENSTACK_TAG=stable/train
5 ARG OPNFV_TAG=stable/jerma
6
7 COPY Try-a-quick-fix-vs-asynchronuous-issues.patch /tmp/Try-a-quick-fix-vs-asynchronuous-issues.patch
8 COPY Switch-to-threading.Thread-for-Rally-tasks.patch /tmp/Switch-to-threading.Thread-for-Rally-tasks.patch
9 RUN apk --no-cache add --update python3 bash git grep libffi openssl mailcap && \
10     apk --no-cache add --virtual .build-deps --update \
11         python3-dev build-base libffi-dev openssl-dev && \
12     git init /src/functest-kubernetes && \
13     (cd /src/functest-kubernetes && \
14         git fetch --tags https://gerrit.opnfv.org/gerrit/functest-kubernetes $BRANCH && \
15         git checkout FETCH_HEAD) && \
16     pip3 install --no-cache-dir --src /src \
17         -chttps://git.opnfv.org/functest/plain/upper-constraints.txt?h=$OPNFV_TAG \
18         -chttps://opendev.org/openstack/requirements/raw/branch/$OPENSTACK_TAG/upper-constraints.txt \
19         /src/functest-kubernetes && \
20     (cd /src/rally && patch -p1 < /tmp/Switch-to-threading.Thread-for-Rally-tasks.patch) && \
21     (cd /usr/lib/python3.7/site-packages/xrally_kubernetes/ && \
22         patch -p2 < /tmp/Try-a-quick-fix-vs-asynchronuous-issues.patch) && \
23     rm -rf /src/functest-kubernetes /tmp/Switch-to-threading.Thread-for-Rally-tasks.patch && \
24     bash -c "mkdir -p /var/lib/xtesting /home/opnfv" && \
25     ln -s /var/lib/xtesting /home/opnfv/functest && \
26     mkdir -p /etc/rally && \
27     printf "[database]\nconnection = 'sqlite:////var/lib/rally/database/rally.sqlite'" > /etc/rally/rally.conf && \
28     mkdir -p /var/lib/rally/database && rally db create && \
29     rm /tmp/Try-a-quick-fix-vs-asynchronuous-issues.patch && \
30     apk del .build-deps
31 COPY logging.ini /usr/lib/python3.7/site-packages/xtesting/ci/logging.ini
32 CMD ["run_tests", "-t", "all"]