Fix for Submgr crash added
[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 ###########################################################
24 #
25 ###########################################################
26 FROM nexus3.o-ran-sc.org:10002/o-ran-sc/bldr-ubuntu18-c-go:1.9.0 as submgrcore
27
28 # Update CA certificates
29 RUN apt update && apt install --reinstall -y \
30   ca-certificates \
31   && \
32   update-ca-certificates
33
34 RUN apt update && apt install -y iputils-ping net-tools curl tcpdump gdb valgrind
35
36 WORKDIR /tmp
37
38 #RUN git clone https://github.com/nokia/asn1c.git
39 #RUN cd asn1c && test -f configure || autoreconf -iv
40 #RUN cd asn1c &&  ./configure
41 #RUN cd asn1c && make
42 ##RUN cd asn1c && make check
43 #RUN cd asn1c && make install
44
45 #
46 # Swagger
47 #
48 ARG SWAGGERVERSION=v0.23.0
49 ARG SWAGGERURL=https://github.com/go-swagger/go-swagger/releases/download/${SWAGGERVERSION}/swagger_linux_amd64
50 RUN wget --quiet ${SWAGGERURL} \
51     && mv swagger_linux_amd64 swagger \
52     && chmod +x swagger \
53     && mv swagger /usr/local/bin/
54
55 #
56 # GO DELVE
57 #
58 RUN export GOBIN=/usr/local/bin/ ; \
59     go get -u github.com/go-delve/delve/cmd/dlv \
60     && go install github.com/go-delve/delve/cmd/dlv
61
62
63 #
64 # RMR
65 #
66 ARG RMRVERSION=4.7.4
67 ARG RMRLIBURL=https://packagecloud.io/o-ran-sc/release/packages/debian/stretch/rmr_${RMRVERSION}_amd64.deb/download.deb
68 ARG RMRDEVURL=https://packagecloud.io/o-ran-sc/release/packages/debian/stretch/rmr-dev_${RMRVERSION}_amd64.deb/download.deb
69 RUN wget --content-disposition ${RMRLIBURL} && dpkg -i rmr_${RMRVERSION}_amd64.deb
70 RUN wget --content-disposition ${RMRDEVURL} && dpkg -i rmr-dev_${RMRVERSION}_amd64.deb
71 RUN rm -f rmr_${RMRVERSION}_amd64.deb rmr-dev_${RMRVERSION}_amd64.deb
72
73
74 RUN mkdir /manifests/
75 RUN echo "rmrlib ${RMRVERSION} ${RMRLIBURL}" >> /manifests/versions.txt
76 RUN echo "rmrdev ${RMRVERSION} ${RMRDEVURL}" >> /manifests/versions.txt
77 RUN echo "swagger ${SWAGGERVERSION} ${SWAGGERURL}" >> /manifests/versions.txt
78
79
80 WORKDIR /opt/submgr
81
82 ###########################################################
83 #
84 ###########################################################
85 FROM submgrcore as submgre2apbuild
86
87
88 ENV CFLAGS="-DASN_DISABLE_OER_SUPPORT"
89 ENV CGO_CFLAGS="-DASN_DISABLE_OER_SUPPORT"
90
91 COPY 3rdparty 3rdparty
92 RUN cd 3rdparty/E2AP-v01.00.00 && \
93     gcc -c ${CFLAGS} -I. -g -fPIC *.c  && \
94     gcc *.o -g -shared -o libe2ap.so && \
95     cp libe2ap.so /usr/local/lib/ && \
96     cp *.h /usr/local/include/ && \
97     ldconfig
98
99
100 RUN echo "E2AP         E2AP-v01.00.00" >> /manifests/versions.txt
101
102
103 COPY e2ap e2ap
104 RUN cd e2ap/libe2ap_wrapper && \
105     gcc -c ${CFLAGS} -g -fPIC *.c  && \
106     gcc *.o -g -shared -o libe2ap_wrapper.so && \
107     cp libe2ap_wrapper.so /usr/local/lib/ && \
108     cp *.h /usr/local/include/ && \
109     ldconfig
110
111 # unittest
112 RUN cd e2ap && go test -v ./pkg/conv
113 RUN cd e2ap && go test -v ./pkg/e2ap_wrapper
114
115 # test formating (not important)
116 RUN cd e2ap && test -z "$(gofmt -l pkg/conv/*.go)"
117 RUN cd e2ap && test -z "$(gofmt -l pkg/e2ap_wrapper/*.go)"
118 RUN cd e2ap && test -z "$(gofmt -l pkg/e2ap/*.go)"
119 RUN cd e2ap && test -z "$(gofmt -l pkg/e2ap/e2ap_tests/*.go)"
120
121
122 ###########################################################
123 #
124 ###########################################################
125 FROM submgre2apbuild as submgrbuild
126 #
127 #
128 #
129 COPY go.mod go.mod
130 RUN go mod download
131
132 #
133 #
134 #
135 RUN mkdir pkg
136 COPY api api
137
138
139 ARG RTMGRVERSION=cd7867c8f527f46fd8702b0b8d6b380a8e134bea
140
141 RUN git clone "https://gerrit.o-ran-sc.org/r/ric-plt/rtmgr" \
142     && git -C "rtmgr" checkout $RTMGRVERSION \
143     && cp rtmgr/api/routing_manager.yaml api/ \
144     && rm -rf rtmgr
145
146
147 RUN mkdir -p /root/go && \
148     swagger generate client -f api/routing_manager.yaml -t pkg/ -m rtmgr_models -c rtmgr_client
149
150
151 RUN echo "rtmgrapi ${RTMGRVERSION} https://gerrit.o-ran-sc.org/r/ric-plt/rtmgr" >> /manifests/versions.txt
152
153 #
154 #
155 #
156 COPY pkg pkg
157 COPY cmd cmd
158
159 COPY go.sum go.sum
160 RUN go mod tidy
161
162 RUN mkdir -p /opt/bin && \
163     go build -o /opt/bin/submgr cmd/submgr.go && \
164     mkdir -p /opt/build/container/usr/local
165
166 RUN cp go.mod go.sum /manifests/
167 RUN grep gerrit /manifests/go.sum > /manifests/go_gerrit.sum
168
169
170 # unittest
171 COPY test/config-file.json test/config-file.json
172 ENV CFG_FILE=/opt/submgr/test/config-file.json
173 COPY test/uta_rtg.rt test/uta_rtg.rt
174 ENV RMR_SEED_RT=/opt/submgr/test/uta_rtg.rt 
175
176 #ENV CGO_LDFLAGS="-fsanitize=address"
177 #ENV CGO_CFLAGS="-fsanitize=address"
178
179 #
180 # To get debug from rmr
181 #
182 #RUN echo 5 >  /opt/submgr/level
183 #RUN RMR_VCTL_FILE=/opt/submgr/level go test -test.coverprofile /tmp/submgr_cover.out -count=1 -v ./pkg/control 
184
185 #
186 # go tests. comment out ipv6 localhost if exist when tests are executed.
187 #
188 RUN sed -r  "s/^(::1.*)/#\1/" /etc/hosts  > /etc/hosts.new \
189     && cat /etc/hosts.new > /etc/hosts \
190     && cat /etc/hosts  \
191     && go test -failfast -test.coverprofile /tmp/submgr_cover.out -count=1 -v ./pkg/control \
192     && go tool cover -html=/tmp/submgr_cover.out -o /tmp/submgr_cover.html    
193
194 # test formating (not important)
195 RUN test -z "$(gofmt -l pkg/control/*.go)"
196 RUN test -z "$(gofmt -l pkg/teststub/*.go)"
197 RUN test -z "$(gofmt -l pkg/teststubdummy/*.go)"
198 RUN test -z "$(gofmt -l pkg/teststube2ap/*.go)"
199
200
201 ###########################################################
202 #
203 ###########################################################
204 FROM ubuntu:18.04
205
206 RUN apt update && apt install -y iputils-ping net-tools curl tcpdump
207
208 COPY --from=submgrbuild /manifests /manifests
209 COPY --from=submgrbuild /opt/bin/submgr /
210 COPY --from=submgrbuild /usr/local/include/rmr /usr/local/include/
211 COPY --from=submgrbuild /usr/local/lib/librmr* /usr/local/lib/
212 COPY --from=submgrbuild /usr/local/lib/libe2ap* /usr/local/lib/
213 RUN ldconfig
214
215 COPY run_submgr.sh /
216 RUN chmod 755 /run_submgr.sh
217
218 #default config
219 COPY config /opt/config
220 ENV CFG_FILE=/opt/config/submgr-config.yaml
221 ENV RMR_SEED_RT=/opt/config/submgr-uta-rtg.rt
222
223 ENTRYPOINT ["/submgr"]