RIC:1060: Change in PTL
[ric-plt/a1.git] / 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
20 #TODO check why defualt golang is not working
21 ARG GOVERSION="1.18.5"
22 RUN wget -nv https://dl.google.com/go/go${GOVERSION}.linux-amd64.tar.gz \
23      && tar -xf go${GOVERSION}.linux-amd64.tar.gz \
24      && mv go /opt/go/${GOVERSION} \
25      && rm -f go*.gz
26
27
28 ENV DEFAULTPATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
29 ENV PATH=$DEFAULTPATH:/usr/local/go/bin:/opt/go/${GOVERSION}/bin:/root/go/bin
30
31 RUN apt-get update -y && apt-get install -y jq
32
33 # Update CA certificates
34 RUN apt update && apt install --reinstall -y \
35   ca-certificates \
36   && \
37   update-ca-certificates
38
39 #Install RMR
40
41 ARG RMR_VER=4.9.4
42 ARG RMR_PKG_URL=https://packagecloud.io/o-ran-sc/release/packages/debian/stretch/
43
44 RUN wget -nv --content-disposition ${RMR_PKG_URL}/rmr_${RMR_VER}_amd64.deb/download.deb
45 RUN wget -nv --content-disposition ${RMR_PKG_URL}/rmr-dev_${RMR_VER}_amd64.deb/download.deb
46 RUN    dpkg -i rmr_${RMR_VER}_amd64.deb  \
47         && dpkg -i rmr-dev_${RMR_VER}_amd64.deb \
48         && ldconfig
49
50
51 ENV PATH="/usr/local/go/bin:${PATH}"
52
53 ENV GOPATH="/go"
54
55 RUN mkdir -p /go/bin
56 RUN mkdir -p /go/src/ws
57 WORKDIR "/go/src/ws"
58
59 # Module prepare (if go.mod/go.sum updated)
60 COPY go.mod /go/src/ws
61 COPY go.sum /go/src/ws
62 RUN GO111MODULE=on go mod download
63
64 # build and test
65 COPY . /go/src/ws
66 COPY  ./config/config_test.yaml /opt/a1-mediator/
67
68 ENV CFG_FILE=/opt/a1-mediator/config_test.yaml
69 ENV A1_CONFIG_FILE=/opt/a1-mediator/config_test.yaml
70
71
72 # Build the code
73 RUN GO111MODULE=on GO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o /go/src/ws/cache/go/cmd/a1 cmd/a1.go
74
75 # Run unit tests
76 RUN GO111MODULE=on GO_ENABLED=0 GOOS=linux go test -p 1 -cover ./pkg/resthooks/
77 RUN GO111MODULE=on GO_ENABLED=0 GOOS=linux go test -p 1 -cover ./pkg/a1/
78 RUN GO111MODULE=on GO_ENABLED=0 GOOS=linux go test -p 1 -cover ./pkg/policy
79
80 RUN gofmt -l $(find cmd/ pkg/  -name '*.go' -not -name '*_test.go')
81
82 CMD ["/bin/bash"]
83
84
85 #----------------------------------------------------------
86 FROM ubuntu:18.04 as a1-mediator
87
88 RUN apt-get update -y \
89     && apt-get install --reinstall -y sudo openssl ca-certificates ca-cacert wget\
90     && apt-get clean && update-ca-certificates
91
92 #Install RMR
93
94 ARG RMR_VER=4.9.1
95 ARG RMR_PKG_URL=https://packagecloud.io/o-ran-sc/release/packages/debian/stretch/
96
97 RUN wget -nv --content-disposition ${RMR_PKG_URL}/rmr_${RMR_VER}_amd64.deb/download.deb
98 RUN wget -nv --content-disposition ${RMR_PKG_URL}/rmr-dev_${RMR_VER}_amd64.deb/download.deb
99 RUN    dpkg -i rmr_${RMR_VER}_amd64.deb  \
100         && dpkg -i rmr-dev_${RMR_VER}_amd64.deb \
101         && ldconfig
102
103 #
104 # a1-mediator
105 #
106 RUN mkdir -p /opt/a1-mediator \
107     && chmod -R 755 /opt/a1-mediator
108
109 COPY --from=a1-build /go/src/ws/cache/go/cmd/a1 /opt/a1-mediator/a1
110
111 COPY  ./config/config.yaml /opt/a1-mediator/
112
113 WORKDIR /opt/a1-mediator
114
115 ARG CONFIG=/opt/a1-mediator/config.yaml
116 ENV CFG_FILE=$CONFIG
117 ARG A1_CONFIG=/opt/a1-mediator/config.yaml
118 ENV A1_CONFIG_FILE=$A1_CONFIG
119
120
121 COPY a1-entrypoint.sh /opt/a1-mediator/
122 RUN chmod -R 755 /opt/a1-mediator/a1-entrypoint.sh
123 ENTRYPOINT ["/opt/a1-mediator/a1-entrypoint.sh"]
124