aboutsummaryrefslogtreecommitdiffstats
path: root/docker/smoke/Dockerfile
blob: ec050ea4e20ef6d77580b80ffb4714bd6e8691b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
FROM ollivier/functest-core

COPY thirdparty-requirements.txt thirdparty-requirements.txt
RUN apk --no-cache add --virtual .build-deps --update \
        python-dev build-base linux-headers libffi-dev \
        openssl-dev libjpeg-turbo-dev git && \
    pip install --src /src \
        -chttps://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt?h=stable/ocata \
        -rthirdparty-requirements.txt && \
    ln -s /src/tempest /src/refstack-client/.tempest && \
    virtualenv --system-site-packages /src/tempest/.venv && \
    rm thirdparty-requirements.txt && \
    apk del .build-deps
COPY testcases.yaml /usr/lib/python2.7/site-packages/functest/ci/testcases.yaml