blob: a89ed15dae5aaf5c1569710e836ecfbca49572cc [file] [log] [blame]
subhash kumar singh6bc8f8e2021-10-27 11:58:34 +00001# 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
naman.gupta2705dc92022-11-11 14:31:57 +053017FROM nexus3.o-ran-sc.org:10002/o-ran-sc/bldr-ubuntu20-c-go:1.1.0 AS a1-build
subhash kumar singh6bc8f8e2021-10-27 11:58:34 +000018
19RUN apt-get update -y && apt-get install -y jq
20
21# Update CA certificates
22RUN apt update && apt install --reinstall -y \
23 ca-certificates \
24 && \
25 update-ca-certificates
26
naman.gupta2705dc92022-11-11 14:31:57 +053027#Install RMR
28
29ARG RMR_VER=4.8.3
30ARG RMR_PKG_URL=https://packagecloud.io/o-ran-sc/release/packages/debian/stretch/
31
32RUN wget -nv --content-disposition ${RMR_PKG_URL}/rmr_${RMR_VER}_amd64.deb/download.deb
33RUN wget -nv --content-disposition ${RMR_PKG_URL}/rmr-dev_${RMR_VER}_amd64.deb/download.deb
34RUN dpkg -i rmr_${RMR_VER}_amd64.deb \
35 && dpkg -i rmr-dev_${RMR_VER}_amd64.deb \
36 && ldconfig
37
38
subhash kumar singh6bc8f8e2021-10-27 11:58:34 +000039ENV PATH="/usr/local/go/bin:${PATH}"
40
41ENV GOPATH="/go"
42
43RUN mkdir -p /go/bin
44RUN mkdir -p /go/src/ws
45WORKDIR "/go/src/ws"
46
47# Module prepare (if go.mod/go.sum updated)
48COPY go.mod /go/src/ws
49COPY go.sum /go/src/ws
50RUN GO111MODULE=on go mod download
51
52# build and test
53COPY . /go/src/ws
54
naman.gupta2705dc92022-11-11 14:31:57 +053055COPY ./config/uta_rtg.rt /opt/a1-mediator/
56
57ENV RMR_RTG_SVC=-1
58ENV RMR_LOG_VLEVEL=5
59ENV CFG_FILE=/opt/a1-mediator/config-file.json
60ENV RMR_SEED_RT=/opt/a1-mediator/uta_rtg.rt
61
subhash kumar singh6bc8f8e2021-10-27 11:58:34 +000062# Build the code
63RUN 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
66RUN GO111MODULE=on GO_ENABLED=0 GOOS=linux go test -p 1 -cover ./pkg/resthooks/
67RUN GO111MODULE=on GO_ENABLED=0 GOOS=linux go test -p 1 -cover ./pkg/a1/
68
69RUN gofmt -l $(find cmd/ pkg/ -name '*.go' -not -name '*_test.go')
70
71CMD ["/bin/bash"]
72
73
74#----------------------------------------------------------
75FROM ubuntu:18.04 as a1-mediator
76
77RUN apt-get update -y \
naman.gupta2705dc92022-11-11 14:31:57 +053078 && apt-get install --reinstall -y sudo openssl ca-certificates ca-cacert wget\
subhash kumar singh6bc8f8e2021-10-27 11:58:34 +000079 && apt-get clean && update-ca-certificates
80
naman.gupta2705dc92022-11-11 14:31:57 +053081#Install RMR
82
83ARG RMR_VER=4.8.3
84ARG RMR_PKG_URL=https://packagecloud.io/o-ran-sc/release/packages/debian/stretch/
85
86RUN wget -nv --content-disposition ${RMR_PKG_URL}/rmr_${RMR_VER}_amd64.deb/download.deb
87RUN wget -nv --content-disposition ${RMR_PKG_URL}/rmr-dev_${RMR_VER}_amd64.deb/download.deb
88RUN dpkg -i rmr_${RMR_VER}_amd64.deb \
89 && dpkg -i rmr-dev_${RMR_VER}_amd64.deb \
90 && ldconfig
91
subhash kumar singh6bc8f8e2021-10-27 11:58:34 +000092#
93# a1-mediator
94#
95RUN mkdir -p /opt/a1-mediator \
96 && chmod -R 755 /opt/a1-mediator
97
98COPY --from=a1-build /go/src/ws/cache/go/cmd/a1 /opt/a1-mediator/a1
99
100WORKDIR /opt/a1-mediator
101
102COPY a1-entrypoint.sh /opt/a1-mediator/
103ENTRYPOINT ["/opt/a1-mediator/a1-entrypoint.sh"]
104