Cleaning and bug fixes
[ric-plt/submgr.git] / Dockerfile
1 #
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 #
23 FROM nexus3.o-ran-sc.org:10004/bldr-ubuntu18-c-go:3-u18.04-nng as submgrprebuild
24
25 RUN apt update && apt install -y iputils-ping net-tools curl tcpdump gdb valgrind
26
27 WORKDIR /tmp
28
29 ARG RMRVERSION=1.13.1
30 # Install RMr shared library
31 RUN 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
32 # Install RMr development header files
33 RUN 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
34
35 # "Installing Swagger"
36 RUN 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
41
42 ENV GOPATH=/root/.go
43 ENV PATH=$PATH:/root/.go/bin
44 RUN /usr/local/go/bin/go get -u github.com/go-delve/delve/cmd/dlv
45
46 WORKDIR /opt/submgr
47
48 RUN mkdir pkg
49
50 #
51 #
52 #
53 ENV CFLAGS="-DASN_DISABLE_OER_SUPPORT"
54 ENV CGO_CFLAGS="-DASN_DISABLE_OER_SUPPORT"
55
56 COPY 3rdparty 3rdparty
57 RUN cd 3rdparty/libe2ap && \
58     gcc -c ${CFLAGS} -I. -g -fPIC *.c  && \
59     gcc *.o -g -shared -o libe2ap.so && \
60     cp libe2ap.so /usr/local/lib/ && \
61     cp *.h /usr/local/include/ && \
62     ldconfig
63
64 COPY e2ap e2ap
65 RUN cd e2ap/libe2ap_wrapper && \
66     gcc -c ${CFLAGS} -g -fPIC *.c  && \
67     gcc *.o -g -shared -o libe2ap_wrapper.so && \
68     cp libe2ap_wrapper.so /usr/local/lib/ && \
69     cp *.h /usr/local/include/ && \
70     ldconfig
71
72 # unittest
73 RUN cd e2ap && /usr/local/go/bin/go test -v ./pkg/conv
74 RUN cd e2ap && /usr/local/go/bin/go test -v ./pkg/e2ap_wrapper
75
76 # test formating (not important)
77 RUN cd e2ap && test -z "$(/usr/local/go/bin/gofmt -l pkg/conv/*.go)"
78 RUN cd e2ap && test -z "$(/usr/local/go/bin/gofmt -l pkg/e2ap_wrapper/*.go)"
79 RUN cd e2ap && test -z "$(/usr/local/go/bin/gofmt -l pkg/e2ap/*.go)"
80 RUN cd e2ap && test -z "$(/usr/local/go/bin/gofmt -l pkg/e2ap/e2ap_tests/*.go)"
81
82
83 FROM submgrprebuild as submgrbuild
84 #
85 #
86 #
87 COPY go.mod go.mod
88 COPY go.sum go.sum
89
90 RUN /usr/local/go/bin/go mod download
91
92 #
93 #
94 #
95 COPY api api
96
97 # "Getting and generating routing managers api client"
98 RUN git clone "https://gerrit.o-ran-sc.org/r/ric-plt/rtmgr" \
99     && cp rtmgr/api/routing_manager.yaml api/ \
100     && rm -rf rtmgr
101
102 RUN 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
105 #
106 #
107 #
108 COPY pkg pkg
109 COPY cmd cmd
110
111 RUN mkdir -p /opt/bin && \
112     /usr/local/go/bin/go build -o /opt/bin/submgr cmd/submgr.go && \
113     mkdir -p /opt/build/container/usr/local
114
115
116 RUN /usr/local/go/bin/go mod tidy
117
118 # unittest
119 COPY test/config-file.json test/config-file.json
120 ENV CFG_FILE=/opt/submgr/test/config-file.json
121
122 RUN /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
126
127 RUN /usr/local/go/bin/go tool cover -html=/tmp/submgr_cover.out -o /tmp/submgr_cover.html
128
129 # test formating (not important)
130 RUN test -z "$(/usr/local/go/bin/gofmt -l pkg/control/*.go)"
131
132
133 #
134 #
135 #
136 FROM ubuntu:18.04
137
138 RUN apt update && apt install -y iputils-ping net-tools curl tcpdump
139
140 COPY run_submgr.sh /
141 COPY --from=submgrbuild /opt/bin/submgr /
142 COPY --from=submgrbuild /usr/local/include /usr/local/include
143 COPY --from=submgrbuild /usr/local/lib /usr/local/lib
144 RUN ldconfig
145
146 RUN chmod 755 /run_submgr.sh
147 CMD /run_submgr.sh