aboutsummaryrefslogtreecommitdiffstats
path: root/security/docker/Dockerfile
blob: 667900fc7b8e31c5c6c9c49d5c83d5826c6f81a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
FROM opnfv/xtesting

ARG ONAP_TAG=master
ARG PIP_TAG=19.3.1

COPY requirements.txt requirements.txt
RUN apk --no-cache add --virtual .build-deps --update \
        openssl-dev libjpeg-turbo-dev && \
    apk del .build-deps

COPY docker/testcases.yaml /usr/lib/python3.8/site-packages/xtesting/ci/testcases.yaml
CMD ["run_test -t all -r"]