blob: 33dc63b0deb1e5254f9d82f62a05a5cd397ecce7 [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 Garciaa60ec732021-03-17 15:28:47 +010016########################################################################
17
18FROM ubuntu:18.04 as INSTALL
19
20RUN 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
29RUN DEBIAN_FRONTEND=noninteractive apt-get --yes install \
30 git=1:2.17.1-1ubuntu0.8 \
31 libcurl4-openssl-dev=7.58.0-2ubuntu3.13 \
32 libssl-dev=1.1.1-1ubuntu2.1~18.04.9
33
34ARG OSM_TESTS_URL
35ARG PYTHON3_OSM_IM_URL
36ARG PYTHON3_OSMCLIENT_URL
37
38RUN curl $PYTHON3_OSM_IM_URL -o osm_im.deb
39RUN dpkg -i ./osm_im.deb
40
41RUN curl $PYTHON3_OSMCLIENT_URL -o osmclient.deb
42RUN dpkg -i ./osmclient.deb
43
44RUN curl $OSM_TESTS_URL -o osm_tests.deb
45RUN dpkg -i ./osm_tests.deb
46
47
48RUN 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
52
53RUN git clone \
54 https://osm.etsi.org/gitlab/vnf-onboarding/osm-packages.git \
55 --recurse-submodules \
56 /robot-systest/osm-packages
57
Felipe Vicens7334f682020-06-24 15:59:59 +020058FROM ubuntu:18.04
59
David Garciaa60ec732021-03-17 15:28:47 +010060RUN DEBIAN_FRONTEND=noninteractive apt-get --yes update && \
61 DEBIAN_FRONTEND=noninteractive apt-get --yes install python3-minimal=3.6.7-1~18.04
João Fonsecab3daa3a2021-02-15 15:57:51 +000062
David Garciaa60ec732021-03-17 15:28:47 +010063COPY --from=INSTALL /usr/lib/python3/dist-packages /usr/lib/python3/dist-packages
64COPY --from=INSTALL /usr/local/lib/python3.6/dist-packages /usr/local/lib/python3.6/dist-packages
beierlmb7608052021-04-07 05:25:10 -040065COPY --from=INSTALL /usr/bin/osm /usr/bin/osm
João Fonsecab3daa3a2021-02-15 15:57:51 +000066
David Garciaa60ec732021-03-17 15:28:47 +010067COPY --from=INSTALL /usr/share/osm-tests/robot-systest /robot-systest
68COPY --from=INSTALL /usr/share/osm-tests/charm.sh /usr/sbin/charm
69COPY --from=INSTALL /robot-systest/osm-packages /robot-systest/osm-packages
Felipe Vicens7334f682020-06-24 15:59:59 +020070
71WORKDIR /robot-systest
72
Felipe Vicens7334f682020-06-24 15:59:59 +020073# Folder where Robot tests are stored
74ENV ROBOT_DEVOPS_FOLDER=/robot-systest
75
76# Folder to save alternative DUT environments (optional)
77ENV ENVIRONMENTS_FOLDER=environments
78
79# Folder where all required packages are stored
80ENV PACKAGES_FOLDER=/robot-systest/osm-packages
81
82# Folder where test results should be exported
83ENV ROBOT_REPORT_FOLDER=/robot-systest/results
84
85# Kubeconfig file
86ENV K8S_CREDENTIALS=/root/.kube/config
87
88ENV LC_ALL=C.UTF-8
89ENV LANG=C.UTF-8
90
beierlma4a37f72020-06-26 12:55:01 -040091ENTRYPOINT [ "/robot-systest/run_test.sh"]