Remove energy from logging configs
[functest-kubernetes.git] / docker / core / Dockerfile
1 FROM golang:1.11-alpine3.9
2
3 ARG BRANCH=stable/hunter
4 ARG OPENSTACK_TAG=stable/rocky
5 ARG OPNFV_TAG=stable/hunter
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 python py-pip bash git grep libffi openssl mailcap && \
10     apk --no-cache add --virtual .build-deps --update \
11         python-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     pip 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 /usr/lib/python2.7/site-packages/rally && patch -p2 < /tmp/Switch-to-threading.Thread-for-Rally-tasks.patch) && \
21     (cd /usr/lib/python2.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/python2.7/site-packages/xtesting/ci/logging.ini
32 COPY logging.debug.ini /usr/lib/python2.7/site-packages/xtesting/ci/logging.debug.ini
33 CMD ["run_tests", "-t", "all"]