a9e6c15bda2f5c18c595c55c1e5ebfba9d504f87
[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.8.3
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 COPY  ./config/config_rmr.json /opt/a1-mediator/
68
69 ENV CFG_FILE=/opt/a1-mediator/config-_rmr.json
70 ENV A1_CONFIG_FILE=/opt/a1-mediator/config_test.yaml
71
72
73 # Build the code
74 RUN GO111MODULE=on GO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o /go/src/ws/cache/go/cmd/a1 cmd/a1.go
75
76 # Run unit tests
77 RUN GO111MODULE=on GO_ENABLED=0 GOOS=linux go test -p 1 -cover ./pkg/resthooks/
78 RUN GO111MODULE=on GO_ENABLED=0 GOOS=linux go test -p 1 -cover ./pkg/a1/
79 RUN GO111MODULE=on GO_ENABLED=0 GOOS=linux go test -p 1 -cover ./pkg/policy
80
81 RUN gofmt -l $(find cmd/ pkg/  -name '*.go' -not -name '*_test.go')
82
83 CMD ["/bin/bash"]
84
85
86 #----------------------------------------------------------
87 FROM ubuntu:18.04 as a1-mediator
88
89 RUN apt-get update -y \
90     && apt-get install --reinstall -y sudo openssl ca-certificates ca-cacert wget\
91     && apt-get clean && update-ca-certificates
92
93 #Install RMR
94
95 ARG RMR_VER=4.8.3
96 ARG RMR_PKG_URL=https://packagecloud.io/o-ran-sc/release/packages/debian/stretch/
97
98 RUN wget -nv --content-disposition ${RMR_PKG_URL}/rmr_${RMR_VER}_amd64.deb/download.deb
99 RUN wget -nv --content-disposition ${RMR_PKG_URL}/rmr-dev_${RMR_VER}_amd64.deb/download.deb
100 RUN    dpkg -i rmr_${RMR_VER}_amd64.deb  \
101         && dpkg -i rmr-dev_${RMR_VER}_amd64.deb \
102         && ldconfig
103
104 #
105 # a1-mediator
106 #
107 RUN mkdir -p /opt/a1-mediator \
108     && chmod -R 755 /opt/a1-mediator
109
110 COPY --from=a1-build /go/src/ws/cache/go/cmd/a1 /opt/a1-mediator/a1
111
112 COPY  ./config/config.yaml /opt/a1-mediator/
113 COPY  ./config/config_rmr.json /opt/a1-mediator/
114
115 WORKDIR /opt/a1-mediator
116
117 ARG RMR_CONFIG=/opt/a1-mediator/config-_rmr.json
118 ENV CFG_FILE=$RMR_CONFIG
119 ARG A1_CONFIG=/opt/a1-mediator/config.yaml
120 ENV A1_CONFIG_FILE=$A1_CONFIG
121
122
123 COPY a1-entrypoint.sh /opt/a1-mediator/
124 ENTRYPOINT ["/opt/a1-mediator/a1-entrypoint.sh"]
125