a89ed15dae5aaf5c1569710e836ecfbca49572cc
[ric-plt/a1.git] / a1-go / Dockerfile
1 #   Copyright (c) 2021 Samsung.
2 #
3 #   Licensed under the Apache License, Version 2.0 (the "License");
4 #   you may not use this file except in compliance with the License.
5 #   You may obtain a copy of the License at
6 #
7 #       http://www.apache.org/licenses/LICENSE-2.0
8 #
9 #   Unless required by applicable law or agreed to in writing, software
10 #   distributed under the License is distributed on an "AS IS" BASIS,
11 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 #   See the License for the specific language governing permissions and
13 #   limitations under the License.
14
15 #-----------------------------------------------------------
16
17 FROM nexus3.o-ran-sc.org:10002/o-ran-sc/bldr-ubuntu20-c-go:1.1.0 AS a1-build
18
19 RUN apt-get update -y && apt-get install -y jq
20
21 # Update CA certificates
22 RUN apt update && apt install --reinstall -y \
23   ca-certificates \
24   && \
25   update-ca-certificates
26
27 #Install RMR
28
29 ARG RMR_VER=4.8.3
30 ARG RMR_PKG_URL=https://packagecloud.io/o-ran-sc/release/packages/debian/stretch/
31
32 RUN wget -nv --content-disposition ${RMR_PKG_URL}/rmr_${RMR_VER}_amd64.deb/download.deb
33 RUN wget -nv --content-disposition ${RMR_PKG_URL}/rmr-dev_${RMR_VER}_amd64.deb/download.deb
34 RUN    dpkg -i rmr_${RMR_VER}_amd64.deb  \
35         && dpkg -i rmr-dev_${RMR_VER}_amd64.deb \
36         && ldconfig
37
38
39 ENV PATH="/usr/local/go/bin:${PATH}"
40
41 ENV GOPATH="/go"
42
43 RUN mkdir -p /go/bin
44 RUN mkdir -p /go/src/ws
45 WORKDIR "/go/src/ws"
46
47 # Module prepare (if go.mod/go.sum updated)
48 COPY go.mod /go/src/ws
49 COPY go.sum /go/src/ws
50 RUN GO111MODULE=on go mod download
51
52 # build and test
53 COPY . /go/src/ws
54
55 COPY  ./config/uta_rtg.rt /opt/a1-mediator/
56
57 ENV RMR_RTG_SVC=-1
58 ENV RMR_LOG_VLEVEL=5
59 ENV CFG_FILE=/opt/a1-mediator/config-file.json
60 ENV RMR_SEED_RT=/opt/a1-mediator/uta_rtg.rt
61
62 # Build the code
63 RUN GO111MODULE=on GO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o /go/src/ws/cache/go/cmd/a1 cmd/a1.go
64
65 # Run unit tests
66 RUN GO111MODULE=on GO_ENABLED=0 GOOS=linux go test -p 1 -cover ./pkg/resthooks/
67 RUN GO111MODULE=on GO_ENABLED=0 GOOS=linux go test -p 1 -cover ./pkg/a1/
68
69 RUN gofmt -l $(find cmd/ pkg/  -name '*.go' -not -name '*_test.go')
70
71 CMD ["/bin/bash"]
72
73
74 #----------------------------------------------------------
75 FROM ubuntu:18.04 as a1-mediator
76
77 RUN apt-get update -y \
78     && apt-get install --reinstall -y sudo openssl ca-certificates ca-cacert wget\
79     && apt-get clean && update-ca-certificates
80
81 #Install RMR
82
83 ARG RMR_VER=4.8.3
84 ARG RMR_PKG_URL=https://packagecloud.io/o-ran-sc/release/packages/debian/stretch/
85
86 RUN wget -nv --content-disposition ${RMR_PKG_URL}/rmr_${RMR_VER}_amd64.deb/download.deb
87 RUN wget -nv --content-disposition ${RMR_PKG_URL}/rmr-dev_${RMR_VER}_amd64.deb/download.deb
88 RUN    dpkg -i rmr_${RMR_VER}_amd64.deb  \
89         && dpkg -i rmr-dev_${RMR_VER}_amd64.deb \
90         && ldconfig
91
92 #
93 # a1-mediator
94 #
95 RUN mkdir -p /opt/a1-mediator \
96     && chmod -R 755 /opt/a1-mediator
97
98 COPY --from=a1-build /go/src/ws/cache/go/cmd/a1 /opt/a1-mediator/a1
99
100 WORKDIR /opt/a1-mediator
101
102 COPY a1-entrypoint.sh /opt/a1-mediator/
103 ENTRYPOINT ["/opt/a1-mediator/a1-entrypoint.sh"]
104