blob: d855f50ca6084a1d682f3ac638072916f9b9d121 [file] [log] [blame]
Felipe Vicens7334f682020-06-24 15:59:59 +02001# 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
David Garcia41165ed2021-03-17 15:28:47 +010016########################################################################
Felipe Vicens7334f682020-06-24 15:59:59 +020017
David Garcia41165ed2021-03-17 15:28:47 +010018FROM ubuntu:18.04 as INSTALL
João Fonsecafe685b92021-02-15 15:57:51 +000019
David Garcia41165ed2021-03-17 15:28:47 +010020RUN DEBIAN_FRONTEND=noninteractive apt-get --yes update && \
21 DEBIAN_FRONTEND=noninteractive apt-get --yes install \
sousaedu68e47ee2021-08-12 15:35:51 +010022 gcc=4:7.4.* \
23 python3=3.6.* \
24 python3-dev=3.6.* \
25 python3-setuptools=39.0.* \
26 curl=7.58.* \
27 gettext-base=0.19.* \
28 git=1:2.17.* \
29 iputils-ping=3:* \
30 jq=1.5* \
31 libcurl4-openssl-dev=7.58.* \
32 libssl-dev=1.1.* && \
palsus95e638f2021-08-04 18:12:21 +000033 python3 -m easy_install pip==21.0.1
João Fonsecafe685b92021-02-15 15:57:51 +000034
David Garcia41165ed2021-03-17 15:28:47 +010035ARG OSM_TESTS_URL
36ARG PYTHON3_OSM_IM_URL
37ARG PYTHON3_OSMCLIENT_URL
João Fonsecafe685b92021-02-15 15:57:51 +000038
David Garcia41165ed2021-03-17 15:28:47 +010039RUN curl $PYTHON3_OSM_IM_URL -o osm_im.deb
40RUN dpkg -i ./osm_im.deb
João Fonsecafe685b92021-02-15 15:57:51 +000041
David Garcia41165ed2021-03-17 15:28:47 +010042RUN curl $PYTHON3_OSMCLIENT_URL -o osmclient.deb
43RUN dpkg -i ./osmclient.deb
João Fonsecafe685b92021-02-15 15:57:51 +000044
David Garcia41165ed2021-03-17 15:28:47 +010045RUN curl $OSM_TESTS_URL -o osm_tests.deb
46RUN dpkg -i ./osm_tests.deb
Felipe Vicens7334f682020-06-24 15:59:59 +020047
David Garcia41165ed2021-03-17 15:28:47 +010048RUN pip3 install \
49 -r /usr/lib/python3/dist-packages/osm_im/requirements.txt \
50 -r /usr/lib/python3/dist-packages/osmclient/requirements.txt \
51 -r /usr/share/osm-tests/requirements.txt
Felipe Vicens7334f682020-06-24 15:59:59 +020052
53RUN mv /usr/share/osm-tests/robot-systest /robot-systest
54RUN mv /usr/share/osm-tests/charm.sh /usr/sbin/charm
55
David Garcia41165ed2021-03-17 15:28:47 +010056RUN git clone \
57 https://osm.etsi.org/gitlab/vnf-onboarding/osm-packages.git \
58 --recurse-submodules \
59 /robot-systest/osm-packages
Felipe Vicens7334f682020-06-24 15:59:59 +020060
David Garcia41165ed2021-03-17 15:28:47 +010061WORKDIR /robot-systest
Felipe Vicens7334f682020-06-24 15:59:59 +020062
63# Folder where Robot tests are stored
64ENV ROBOT_DEVOPS_FOLDER=/robot-systest
65
66# Folder to save alternative DUT environments (optional)
67ENV ENVIRONMENTS_FOLDER=environments
68
69# Folder where all required packages are stored
70ENV PACKAGES_FOLDER=/robot-systest/osm-packages
71
72# Folder where test results should be exported
73ENV ROBOT_REPORT_FOLDER=/robot-systest/results
74
75# Kubeconfig file
76ENV K8S_CREDENTIALS=/root/.kube/config
77
78ENV LC_ALL=C.UTF-8
79ENV LANG=C.UTF-8
80
beierlma4a37f72020-06-26 12:55:01 -040081ENTRYPOINT [ "/robot-systest/run_test.sh"]