Add missing software layers
[osm/devops.git] / docker / tests / Dockerfile
1 # Copyright 2020 ETSI
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #    http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
12 # implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15
16 ########################################################################
17
18 FROM ubuntu:18.04 as INSTALL
19
20 RUN DEBIAN_FRONTEND=noninteractive apt-get --yes update && \
21     DEBIAN_FRONTEND=noninteractive apt-get --yes install \
22     gcc=4:7.4.0-1ubuntu2.3 \
23     python3=3.6.7-1~18.04 \
24     python3-dev=3.6.7-1~18.04 \
25     python3-setuptools=39.0.1-2 \
26     curl=7.58.0-2ubuntu3.13 && \
27     python3 -m easy_install pip==21.0.1
28
29 RUN DEBIAN_FRONTEND=noninteractive apt-get --yes install \
30     gettext-base \
31     git=1:2.17.1-1ubuntu0.8 \
32     jq=1.5+dfsg-2 \
33     libcurl4-openssl-dev=7.58.0-2ubuntu3.13 \
34     libssl-dev=1.1.1-1ubuntu2.1~18.04.9
35
36 ARG OSM_TESTS_URL
37 ARG PYTHON3_OSM_IM_URL
38 ARG PYTHON3_OSMCLIENT_URL
39
40 RUN curl $PYTHON3_OSM_IM_URL -o osm_im.deb
41 RUN dpkg -i ./osm_im.deb
42
43 RUN curl $PYTHON3_OSMCLIENT_URL -o osmclient.deb
44 RUN dpkg -i ./osmclient.deb
45
46 RUN curl $OSM_TESTS_URL -o osm_tests.deb
47 RUN dpkg -i ./osm_tests.deb
48
49 RUN pip3 install \
50     -r /usr/lib/python3/dist-packages/osm_im/requirements.txt \
51     -r /usr/lib/python3/dist-packages/osmclient/requirements.txt \
52     -r /usr/share/osm-tests/requirements.txt
53
54 RUN mv /usr/share/osm-tests/robot-systest /robot-systest
55 RUN mv /usr/share/osm-tests/charm.sh /usr/sbin/charm
56
57 RUN git clone \
58     https://osm.etsi.org/gitlab/vnf-onboarding/osm-packages.git \
59     --recurse-submodules \
60     /robot-systest/osm-packages
61
62 WORKDIR /robot-systest
63
64 # Folder where Robot tests are stored
65 ENV ROBOT_DEVOPS_FOLDER=/robot-systest
66
67 # Folder to save alternative DUT environments (optional)
68 ENV ENVIRONMENTS_FOLDER=environments
69
70 # Folder where all required packages are stored
71 ENV PACKAGES_FOLDER=/robot-systest/osm-packages
72
73 # Folder where test results should be exported
74 ENV ROBOT_REPORT_FOLDER=/robot-systest/results
75
76 # Kubeconfig file
77 ENV K8S_CREDENTIALS=/root/.kube/config
78
79 ENV LC_ALL=C.UTF-8
80 ENV LANG=C.UTF-8
81
82 ENTRYPOINT [ "/robot-systest/run_test.sh"]