1 # Copyright (c) 2021 Samsung.
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
7 # http://www.apache.org/licenses/LICENSE-2.0
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.
15 #-----------------------------------------------------------
17 FROM nexus3.o-ran-sc.org:10002/o-ran-sc/bldr-ubuntu20-c-go:1.1.0 AS a1-build
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} \
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
31 RUN apt-get update -y && apt-get install -y jq
33 # Update CA certificates
34 RUN apt update && apt install --reinstall -y \
37 update-ca-certificates
42 ARG RMR_PKG_URL=https://packagecloud.io/o-ran-sc/release/packages/debian/stretch/
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 \
51 ENV PATH="/usr/local/go/bin:${PATH}"
56 RUN mkdir -p /go/src/ws
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
67 COPY ./config/uta_rtg.rt /opt/a1-mediator/
71 ENV CFG_FILE=/opt/a1-mediator/config-file.json
72 ENV RMR_SEED_RT=/opt/a1-mediator/uta_rtg.rt
75 RUN GO111MODULE=on GO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o /go/src/ws/cache/go/cmd/a1 cmd/a1.go
78 RUN GO111MODULE=on GO_ENABLED=0 GOOS=linux go test -p 1 -cover ./pkg/resthooks/
79 RUN GO111MODULE=on GO_ENABLED=0 GOOS=linux go test -p 1 -cover ./pkg/a1/
81 RUN gofmt -l $(find cmd/ pkg/ -name '*.go' -not -name '*_test.go')
86 #----------------------------------------------------------
87 FROM ubuntu:18.04 as a1-mediator
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
96 ARG RMR_PKG_URL=https://packagecloud.io/o-ran-sc/release/packages/debian/stretch/
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 \
107 RUN mkdir -p /opt/a1-mediator \
108 && chmod -R 755 /opt/a1-mediator
110 COPY --from=a1-build /go/src/ws/cache/go/cmd/a1 /opt/a1-mediator/a1
112 WORKDIR /opt/a1-mediator
114 COPY a1-entrypoint.sh /opt/a1-mediator/
115 ENTRYPOINT ["/opt/a1-mediator/a1-entrypoint.sh"]