aboutsummaryrefslogtreecommitdiffstats
path: root/docker/core/Dockerfile
blob: 9e960022c395eefd0a01d900cc67d12a9759ca93 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
FROM golang:1.11-alpine3.9

ARG BRANCH=stable/hunter
ARG OPENSTACK_TAG=stable/rocky
ARG OPNFV_TAG=stable/hunter

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
COPY Allow-offline-testing-in-PodWithClusterIPSvc.patch /tmp/Allow-offline-testing-in-PodWithClusterIPSvc.patch
RUN apk -U upgrade && \
    apk --no-cache add --update libcurl curl --repository=http://dl-cdn.alpinelinux.org/alpine/v3.11/main && \
    apk --no-cache add --update python py-pip bash git grep libffi openssl mailcap && \
    apk --no-cache add --virtual .build-deps --update \
        python-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) && \
    pip install --no-cache-dir --src /src \
        -chttps://git.opnfv.org/functest/plain/upper-constraints.txt?h=$OPNFV_TAG \
        -chttps://opendev.org/openstack/requirements/raw/branch/$OPENSTACK_TAG/upper-constraints.txt \
        setuptools_scm && \
    pip install --no-cache-dir --src /src \
        -chttps://git.opnfv.org/functest/plain/upper-constraints.txt?h=$OPNFV_TAG \
        -chttps://opendev.org/openstack/requirements/raw/branch/$OPENSTACK_TAG/upper-constraints.txt \
        /src/functest-kubernetes && \
    (cd /usr/lib/python2.7/site-packages/rally && patch -p2 < /tmp/Switch-to-threading.Thread-for-Rally-tasks.patch) && \
    (cd /usr/lib/python2.7/site-packages/xrally_kubernetes/ && \
        patch -p2 < /tmp/Try-a-quick-fix-vs-asynchronuous-issues.patch && \
        patch -p2 < /tmp/Allow-offline-testing-in-PodWithClusterIPSvc.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 && \
    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 /tmp/Allow-offline-testing-in-PodWithClusterIPSvc.patch && \
    apk del .build-deps
COPY logging.ini /usr/lib/python2.7/site-packages/xtesting/ci/logging.ini
COPY logging.debug.ini /usr/lib/python2.7/site-packages/xtesting/ci/logging.debug.ini
CMD ["run_tests", "-t", "all"]