blob: 969abcb28781f6cd2ce38aa810d9e2464d7ef52d [file] [log] [blame]
kalnagy303e57c2019-06-28 15:28:35 +02001#
2#==================================================================================
3# Copyright (c) 2019 AT&T Intellectual Property.
4# Copyright (c) 2019 Nokia
5#
6# Licensed under the Apache License, Version 2.0 (the "License");
7# you may not use this file except in compliance with the License.
8# You may obtain a copy of the License at
9#
10# http://www.apache.org/licenses/LICENSE-2.0
11#
12# Unless required by applicable law or agreed to in writing, software
13# distributed under the License is distributed on an "AS IS" BASIS,
14# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15# See the License for the specific language governing permissions and
16# limitations under the License.
17#==================================================================================
18#
19#
20# Abstract: Builds a container to compile Subscription Manager's code
21# Date: 28 May 2019
22#
Juha Hyttinen55040222020-01-16 09:41:04 +020023FROM nexus3.o-ran-sc.org:10004/bldr-ubuntu18-c-go:3-u18.04-nng as submgrprebuild
kalnagy303e57c2019-06-28 15:28:35 +020024
Juha Hyttinen01a4c492020-02-04 19:29:26 +020025RUN apt update && apt install -y iputils-ping net-tools curl tcpdump gdb valgrind
Juha Hyttinenff8dccd2019-12-10 14:34:07 +020026
kalnagye0018682019-09-26 16:28:25 +020027WORKDIR /tmp
kalnagy303e57c2019-06-28 15:28:35 +020028
Juha Hyttinene406a342020-01-13 13:02:26 +020029ARG RMRVERSION=1.13.1
kalnagy303e57c2019-06-28 15:28:35 +020030# Install RMr shared library
Juha Hyttinene406a342020-01-13 13:02:26 +020031RUN wget --content-disposition https://packagecloud.io/o-ran-sc/staging/packages/debian/stretch/rmr_${RMRVERSION}_amd64.deb/download.deb && dpkg -i rmr_${RMRVERSION}_amd64.deb && rm -rf rmr_${RMRVERSION}_amd64.deb
kalnagy303e57c2019-06-28 15:28:35 +020032# Install RMr development header files
Juha Hyttinene406a342020-01-13 13:02:26 +020033RUN wget --content-disposition https://packagecloud.io/o-ran-sc/staging/packages/debian/stretch/rmr-dev_${RMRVERSION}_amd64.deb/download.deb && dpkg -i rmr-dev_${RMRVERSION}_amd64.deb && rm -rf rmr-dev_${RMRVERSION}_amd64.deb
kalnagy303e57c2019-06-28 15:28:35 +020034
kalnagy93cc3e22019-09-19 11:29:29 +020035# "Installing Swagger"
36RUN cd /usr/local/go/bin \
37 && wget --quiet https://github.com/go-swagger/go-swagger/releases/download/v0.19.0/swagger_linux_amd64 \
38 && mv swagger_linux_amd64 swagger \
39 && chmod +x swagger
40
kalnagye0018682019-09-26 16:28:25 +020041
Juha Hyttinen01a4c492020-02-04 19:29:26 +020042ENV GOPATH=/root/.go
43ENV PATH=$PATH:/root/.go/bin
44RUN /usr/local/go/bin/go get -u github.com/go-delve/delve/cmd/dlv
45
kalnagye0018682019-09-26 16:28:25 +020046WORKDIR /opt/submgr
kalnagye0018682019-09-26 16:28:25 +020047
Juha Hyttinenff8dccd2019-12-10 14:34:07 +020048RUN mkdir pkg
49
50#
51#
52#
53ENV CFLAGS="-DASN_DISABLE_OER_SUPPORT"
54ENV CGO_CFLAGS="-DASN_DISABLE_OER_SUPPORT"
55
56COPY 3rdparty 3rdparty
57RUN cd 3rdparty/libe2ap && \
Juha Hyttinen01a4c492020-02-04 19:29:26 +020058 gcc -c ${CFLAGS} -I. -g -fPIC *.c && \
59 gcc *.o -g -shared -o libe2ap.so && \
Juha Hyttinenff8dccd2019-12-10 14:34:07 +020060 cp libe2ap.so /usr/local/lib/ && \
61 cp *.h /usr/local/include/ && \
kalnagye0018682019-09-26 16:28:25 +020062 ldconfig
63
Juha Hyttinenff8dccd2019-12-10 14:34:07 +020064COPY e2ap e2ap
65RUN cd e2ap/libe2ap_wrapper && \
Juha Hyttinen01a4c492020-02-04 19:29:26 +020066 gcc -c ${CFLAGS} -g -fPIC *.c && \
67 gcc *.o -g -shared -o libe2ap_wrapper.so && \
Juha Hyttinenff8dccd2019-12-10 14:34:07 +020068 cp libe2ap_wrapper.so /usr/local/lib/ && \
69 cp *.h /usr/local/include/ && \
70 ldconfig
71
72# unittest
73RUN cd e2ap && /usr/local/go/bin/go test -v ./pkg/conv
74RUN cd e2ap && /usr/local/go/bin/go test -v ./pkg/e2ap_wrapper
75
76# test formating (not important)
77RUN cd e2ap && test -z "$(/usr/local/go/bin/gofmt -l pkg/conv/*.go)"
78RUN cd e2ap && test -z "$(/usr/local/go/bin/gofmt -l pkg/e2ap_wrapper/*.go)"
79RUN cd e2ap && test -z "$(/usr/local/go/bin/gofmt -l pkg/e2ap/*.go)"
80RUN cd e2ap && test -z "$(/usr/local/go/bin/gofmt -l pkg/e2ap/e2ap_tests/*.go)"
81
Juha Hyttinen55040222020-01-16 09:41:04 +020082
83FROM submgrprebuild as submgrbuild
Juha Hyttinenff8dccd2019-12-10 14:34:07 +020084#
85#
86#
87COPY go.mod go.mod
88COPY go.sum go.sum
89
90RUN /usr/local/go/bin/go mod download
91
92#
93#
94#
kalnagye0018682019-09-26 16:28:25 +020095COPY api api
96
kalnagy93cc3e22019-09-19 11:29:29 +020097# "Getting and generating routing managers api client"
kalnagye0018682019-09-26 16:28:25 +020098RUN git clone "https://gerrit.o-ran-sc.org/r/ric-plt/rtmgr" \
kalnagy93cc3e22019-09-19 11:29:29 +020099 && cp rtmgr/api/routing_manager.yaml api/ \
100 && rm -rf rtmgr
101
kalnagye0018682019-09-26 16:28:25 +0200102RUN mkdir -p /root/go && \
103 /usr/local/go/bin/swagger generate client -f api/routing_manager.yaml -t pkg/ -m rtmgr_models -c rtmgr_client
104
Juha Hyttinenff8dccd2019-12-10 14:34:07 +0200105#
106#
107#
kalnagye0018682019-09-26 16:28:25 +0200108COPY pkg pkg
109COPY cmd cmd
110
kalnagye0018682019-09-26 16:28:25 +0200111RUN mkdir -p /opt/bin && \
Juha Hyttinenff8dccd2019-12-10 14:34:07 +0200112 /usr/local/go/bin/go build -o /opt/bin/submgr cmd/submgr.go && \
113 mkdir -p /opt/build/container/usr/local
kalnagy303e57c2019-06-28 15:28:35 +0200114
Juha Hyttinenff8dccd2019-12-10 14:34:07 +0200115
116RUN /usr/local/go/bin/go mod tidy
117
118# unittest
119COPY test/config-file.json test/config-file.json
120ENV CFG_FILE=/opt/submgr/test/config-file.json
Juha Hyttinene406a342020-01-13 13:02:26 +0200121
Juha Hyttinen01a4c492020-02-04 19:29:26 +0200122RUN /usr/local/go/bin/go test -test.coverprofile /tmp/submgr_cover.out -count=1 -v ./pkg/control
123
124#-c -o submgr_test
125#RUN ./submgr_test -test.coverprofile /tmp/submgr_cover.out
Juha Hyttinene406a342020-01-13 13:02:26 +0200126
127RUN /usr/local/go/bin/go tool cover -html=/tmp/submgr_cover.out -o /tmp/submgr_cover.html
Juha Hyttinenff8dccd2019-12-10 14:34:07 +0200128
129# test formating (not important)
130RUN test -z "$(/usr/local/go/bin/gofmt -l pkg/control/*.go)"
131
Juha Hyttinen01a4c492020-02-04 19:29:26 +0200132
Juha Hyttinenff8dccd2019-12-10 14:34:07 +0200133#
134#
135#
kalnagy303e57c2019-06-28 15:28:35 +0200136FROM ubuntu:18.04
137
Balint Uvegescd3881b2019-10-02 15:01:43 +0000138RUN apt update && apt install -y iputils-ping net-tools curl tcpdump
139
kalnagy303e57c2019-06-28 15:28:35 +0200140COPY run_submgr.sh /
Balint Uveges534c8822019-10-09 08:54:53 +0000141COPY --from=submgrbuild /opt/bin/submgr /
kalnagy303e57c2019-06-28 15:28:35 +0200142COPY --from=submgrbuild /usr/local/include /usr/local/include
143COPY --from=submgrbuild /usr/local/lib /usr/local/lib
144RUN ldconfig
145
kalnagy93cc3e22019-09-19 11:29:29 +0200146RUN chmod 755 /run_submgr.sh
kalnagye0018682019-09-26 16:28:25 +0200147CMD /run_submgr.sh