Docker build file for a1 mediator
[ric-plt/a1.git] / a1-go / 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-ubuntu18-c-go:1.9.0 AS a1-build
18
19 RUN apt-get update -y && apt-get install -y jq
20
21 # Update CA certificates
22 RUN apt update && apt install --reinstall -y \
23   ca-certificates \
24   && \
25   update-ca-certificates
26
27 ENV PATH="/usr/local/go/bin:${PATH}"
28
29 ENV GOPATH="/go"
30
31 RUN mkdir -p /go/bin
32 RUN mkdir -p /go/src/ws
33 WORKDIR "/go/src/ws"
34
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
39
40 # build and test
41 COPY . /go/src/ws
42
43 # Build the code
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
45
46 # Run unit tests
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/
49
50 RUN gofmt -l $(find cmd/ pkg/  -name '*.go' -not -name '*_test.go')
51
52 CMD ["/bin/bash"]
53
54
55 #----------------------------------------------------------
56 FROM ubuntu:18.04 as a1-mediator
57
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
61
62 #
63 # a1-mediator
64 #
65 RUN mkdir -p /opt/a1-mediator \
66     && chmod -R 755 /opt/a1-mediator
67
68 COPY --from=a1-build /go/src/ws/cache/go/cmd/a1 /opt/a1-mediator/a1
69
70 WORKDIR /opt/a1-mediator
71
72 COPY a1-entrypoint.sh /opt/a1-mediator/
73 ENTRYPOINT ["/opt/a1-mediator/a1-entrypoint.sh"]
74