1 #==================================================================================
2 # Copyright (c) 2019 AT&T Intellectual Property.
3 # Copyright (c) 2019 Nokia
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
9 # http://www.apache.org/licenses/LICENSE-2.0
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.
17 # This source code is part of the near-RT RIC (RAN Intelligent Controller)
18 # platform project (RICP).
19 #==================================================================================
21 # The CI system creates and publishes the rtmgr Docker image
22 # from the last step in this multi-stage build and applies
23 # a Docker tag from the string in file container-tag.yaml
25 #FROM golang:1.12.1 as rtmgrbuild
26 FROM nexus3.o-ran-sc.org:10002/o-ran-sc/bldr-ubuntu20-c-go:1.0.0 as rtmgrbuild
28 # Install RMr shared library
30 RUN wget --content-disposition https://packagecloud.io/o-ran-sc/release/packages/debian/stretch/rmr_${RMRVERSION}_amd64.deb/download.deb && dpkg -i rmr_${RMRVERSION}_amd64.deb && rm -rf rmr_${RMRVERSION}_amd64.deb
31 # Install RMr development header files
32 RUN wget --content-disposition https://packagecloud.io/o-ran-sc/release/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 #ENV GOLANG_VERSION 1.16
35 #RUN wget --quiet https://dl.google.com/go/go$GOLANG_VERSION.linux-amd64.tar.gz \
36 # && tar xvzf go$GOLANG_VERSION.linux-amd64.tar.gz -C /usr/local
37 #ENV PATH="/usr/local/go/bin:${PATH}"
42 && wget --quiet https://github.com/go-swagger/go-swagger/releases/download/v0.19.0/swagger_linux_amd64 \
43 && mv swagger_linux_amd64 swagger \
47 WORKDIR /go/src/routing-manager
48 COPY api/ /go/src/routing-manager/api
52 RUN git clone "https://gerrit.o-ran-sc.org/r/ric-plt/appmgr" \
53 && cp appmgr/api/appmgr_rest_api.yaml api/ \
56 RUN /go/bin/swagger generate server -f api/routing_manager.yaml -t pkg/ --exclude-main -r LICENSE
57 RUN /go/bin/swagger generate client -f api/appmgr_rest_api.yaml -t pkg/ -m appmgr_model -c appmgr_client -r LICENSE
65 COPY run_rtmgr.sh /run_rtmgr.sh
67 COPY manifests/ /go/src/routing-manager/manifests
68 COPY "uta_rtg_ric.rt" /
72 RUN go install ./cmd/rtmgr.go
74 # UT intermediate container
75 #FROM rtmgrbuild as rtmgrut
77 #ENV RMR_SEED_RT "/uta_rtg_ric.rt"
78 #RUN go test ./pkg/sbi ./pkg/rpe ./pkg/nbi ./pkg/sdl -f "/go/src/routing-manager/manifests/rtmgr/rtmgr-cfg.yaml" -cover -race
80 # Final, executable container
82 COPY --from=rtmgrbuild /go/bin/rtmgr /
83 COPY --from=rtmgrbuild /run_rtmgr.sh /
84 COPY --from=rtmgrbuild /usr/local/include /usr/local/include
85 COPY --from=rtmgrbuild /usr/local/lib /usr/local/lib
86 COPY "uta_rtg_ric.rt" /
88 RUN apt-get update && apt-get install -y iputils-ping net-tools curl tcpdump
89 RUN mkdir /db && touch /db/rt.json && chmod 777 /db/rt.json
90 RUN chmod 755 /run_rtmgr.sh