Taking old commit for releasing image
[ric-plt/rtmgr.git] / Dockerfile
1 #==================================================================================
2 #   Copyright (c) 2019 AT&T Intellectual Property.
3 #   Copyright (c) 2019 Nokia
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 #   This source code is part of the near-RT RIC (RAN Intelligent Controller)
18 #   platform project (RICP).
19 #==================================================================================
20
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
24
25 #FROM golang:1.12.1 as rtmgrbuild
26 FROM nexus3.o-ran-sc.org:10004/bldr-ubuntu18-c-go:4-u18.04-nng as rtmgrbuild
27
28 # Install RMr shared library
29 RUN wget --content-disposition https://packagecloud.io/o-ran-sc/staging/packages/debian/stretch/rmr_1.13.1_amd64.deb/download.deb && dpkg -i rmr_1.13.1_amd64.deb && rm -rf rmr_1.13.1_amd64.deb
30 # Install RMr development header files
31 RUN wget --content-disposition https://packagecloud.io/o-ran-sc/staging/packages/debian/stretch/rmr-dev_1.13.1_amd64.deb/download.deb && dpkg -i rmr-dev_1.13.1_amd64.deb && rm -rf rmr-dev_1.13.1_amd64.deb
32
33 ENV GOLANG_VERSION 1.12.1
34 RUN wget --quiet https://dl.google.com/go/go$GOLANG_VERSION.linux-amd64.tar.gz \
35      && tar xvzf go$GOLANG_VERSION.linux-amd64.tar.gz -C /usr/local 
36 ENV PATH="/usr/local/go/bin:${PATH}"
37 ENV GOPATH /go
38
39 RUN mkdir -p /go/bin
40 RUN cd /go/bin \
41     && wget --quiet https://github.com/go-swagger/go-swagger/releases/download/v0.19.0/swagger_linux_amd64 \
42     && mv swagger_linux_amd64 swagger \
43     && chmod +x swagger
44
45
46 WORKDIR /go/src/routing-manager
47 COPY api/ /go/src/routing-manager/api
48 COPY LICENSE LICENSE
49 RUN mkdir pkg
50
51 RUN git clone "https://gerrit.o-ran-sc.org/r/ric-plt/appmgr" \
52     && cp appmgr/api/appmgr_rest_api.yaml api/ \
53     && rm -rf appmgr
54
55 RUN /go/bin/swagger generate server -f api/routing_manager.yaml -t pkg/ --exclude-main -r LICENSE
56 RUN /go/bin/swagger generate client -f api/appmgr_rest_api.yaml -t pkg/ -m appmgr_model -c appmgr_client -r LICENSE
57
58 ENV GO111MODULE=on 
59 ENV GOPATH ""
60 COPY go.sum go.sum
61 COPY go.mod go.mod
62 COPY pkg pkg
63 COPY cmd cmd
64 COPY run_rtmgr.sh /run_rtmgr.sh
65 #RUN go mod download 
66 #RUN /usr/local/go/bin/go mod tidy
67 ENV GOPATH /go
68
69 ENV GOBIN /go/bin
70 RUN go install ./cmd/rtmgr.go
71
72 # UT intermediate container
73 FROM rtmgrbuild as rtmgrut
74 RUN ldconfig
75 RUN go test ./pkg/sbi ./pkg/rpe ./pkg/nbi ./pkg/sdl -f "./manifests/rtmgr/rtmgr-cfg.yaml" -cover -race
76
77 # Final, executable container
78 FROM ubuntu:16.04
79 COPY --from=rtmgrbuild /go/bin/rtmgr /
80 COPY --from=rtmgrbuild /run_rtmgr.sh /
81 COPY --from=rtmgrbuild /usr/local/include /usr/local/include
82 COPY --from=rtmgrbuild /usr/local/lib /usr/local/lib
83 RUN ldconfig
84 RUN apt-get update && apt-get install -y iputils-ping net-tools curl tcpdump
85 RUN mkdir /db && touch /db/rt.json && chmod 777 /db/rt.json
86 RUN chmod 755 /run_rtmgr.sh
87 CMD /run_rtmgr.sh