SIM-116: Update list of performance metrics in E2 setup request for oransim
[sim/e2-interface.git] / e2sim / e2sm_examples / kpm_e2sm / Dockerfile
1 # vim: ts=4 sw=4 noet:
2 #==================================================================================
3 #       Copyright (c) 2018-2019 AT&T Intellectual Property.
4 #
5 #   Licensed under the Apache License, Version 2.0 (the "License");
6 #   you may not use this file except in compliance with the License.
7 #   You may obtain a copy of the License at
8 #
9 #          http://www.apache.org/licenses/LICENSE-2.0
10 #
11 #   Unless required by applicable law or agreed to in writing, software
12 #   distributed under the License is distributed on an "AS IS" BASIS,
13 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 #   See the License for the specific language governing permissions and
15 #   limitations under the License.
16 #==================================================================================
17
18
19 # --------------------------------------------------------------------------------------
20 #       Mnemonic:       Dockerfile
21 #       Abstract:       This dockerfile is used to create an image that can be used to
22 #                               run the traffic steering xAPP in a container.
23 #
24 #                               Building should be as simple as:
25 #
26 #                                       docker build -f Dockerfile -t ric-app-ts:[version]
27 #
28 #       Date:           27 April 2020
29 #       Author:         E. Scott Daniels
30 # --------------------------------------------------------------------------------------
31
32 # the builder has: git, wget, cmake, gcc/g++, make, python2/3. v7 dropped nng support
33 #
34 ARG CONTAINER_PULL_REGISTRY=nexus3.o-ran-sc.org:10001
35 FROM ${CONTAINER_PULL_REGISTRY}/o-ran-sc/bldr-ubuntu18-c-go:1.9.0 as buildenv
36
37 # spaces to save things in the build image to copy to final image
38 RUN mkdir -p /playpen/assets /playpen/src /playpen/bin
39 ARG SRC=.
40
41 WORKDIR /playpen
42
43 # versions we snarf from package cloud
44 ARG E2SIM_VER=1.0.0
45
46 # package cloud urls for wget
47 #ARG PC_REL_URL=https://packagecloud.io/o-ran-sc/release/packages/debian/stretch
48 #ARG PC_STG_URL=https://packagecloud.io/o-ran-sc/staging/packages/debian/stretch
49
50
51 # snarf up E2SIM dependencies, then pull E2SIM package and install
52 # Dependencies: sctp
53
54 RUN apt-get update \
55         && apt-get install -y \
56         build-essential \
57         git \
58         cmake \
59         libsctp-dev \
60         lksctp-tools \
61         autoconf \
62         automake \
63         libtool \
64         bison \
65         flex \
66   libboost-all-dev \
67         iputils-ping \
68         net-tools \
69         nano \
70         vim \
71         tcpdump \
72         net-tools \
73         nmap \
74   && apt-get clean
75
76
77 #RUN wget -nv --content-disposition ${PC_STG_URL}/sdl_${SDL_VER}-1_amd64.deb/download.deb && \
78 #       wget -nv --content-disposition ${PC_STG_URL}/sdl-dev_${SDL_VER}-1_amd64.deb/download.deb &&\
79 #       dpkg -i sdl-dev_${SDL_VER}-1_amd64.deb sdl_${SDL_VER}-1_amd64.deb
80
81 #
82 # build and install the application(s)
83 #
84
85
86 COPY e2sim_1.0.0_amd64.deb /playpen
87 COPY e2sim-dev_1.0.0_amd64.deb /playpen
88
89 RUN dpkg -i e2sim_1.0.0_amd64.deb e2sim-dev_1.0.0_amd64.deb
90
91
92 RUN mkdir /usr/local/include/nlohmann
93 RUN git clone https://github.com/azadkuh/nlohmann_json_release.git
94 RUN cp nlohmann_json_release/json.hpp /usr/local/include/nlohmann
95
96 COPY . /playpen/src/
97 RUN wc -l /playpen/src/reports.json
98 RUN cd /playpen/src && \
99         rm -fr .build &&\
100         mkdir  .build && \
101         cd .build && \
102         cmake .. && \
103         make install
104
105
106 CMD kpm_sim 10.110.102.29 36422