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-ubuntu18-c-go:1.9.0 AS a1-build
19 RUN apt-get update -y && apt-get install -y jq
21 # Update CA certificates
22 RUN apt update && apt install --reinstall -y \
25 update-ca-certificates
27 ENV PATH="/usr/local/go/bin:${PATH}"
32 RUN mkdir -p /go/src/ws
35 # Module prepare (if go.mod/go.sum updated)
36 COPY go.mod /go/src/ws
37 COPY go.sum /go/src/ws
38 RUN GO111MODULE=on go mod download
44 RUN GO111MODULE=on GO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o /go/src/ws/cache/go/cmd/a1 cmd/a1.go
47 RUN GO111MODULE=on GO_ENABLED=0 GOOS=linux go test -p 1 -cover ./pkg/resthooks/
48 RUN GO111MODULE=on GO_ENABLED=0 GOOS=linux go test -p 1 -cover ./pkg/a1/
50 RUN gofmt -l $(find cmd/ pkg/ -name '*.go' -not -name '*_test.go')
55 #----------------------------------------------------------
56 FROM ubuntu:18.04 as a1-mediator
58 RUN apt-get update -y \
59 && apt-get install --reinstall -y sudo openssl ca-certificates ca-cacert \
60 && apt-get clean && update-ca-certificates
65 RUN mkdir -p /opt/a1-mediator \
66 && chmod -R 755 /opt/a1-mediator
68 COPY --from=a1-build /go/src/ws/cache/go/cmd/a1 /opt/a1-mediator/a1
70 WORKDIR /opt/a1-mediator
72 COPY a1-entrypoint.sh /opt/a1-mediator/
73 ENTRYPOINT ["/opt/a1-mediator/a1-entrypoint.sh"]