Add UT for REST interface & code refactor
[ric-plt/alarm-go.git] / adapter / Dockerfile
1 #==================================================================================
2 #   Copyright (c) 2020 AT&T Intellectual Property.
3 #   Copyright (c) 2020 Nokia
4 #
5 #   Licensed under the Apache License, Version 2.0 (the "License");
6 #   you may not use this file except in compliance with the License.
7 #   You may obtain a copy of the License at
8 #
9 #       http://www.apache.org/licenses/LICENSE-2.0
10 #
11 #   Unless required by applicable law or agreed to in writing, software
12 #   distributed under the License is distributed on an "AS IS" BASIS,
13 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 #   See the License for the specific language governing permissions and
15 #   limitations under the License.
16 #
17 #   This source code is part of the near-RT RIC (RAN Intelligent Controller)
18 #   platform project (RICP).
19 #==================================================================================
20
21 # The CI system creates and publishes the alarm-adapter Docker image
22 # from the last step in this multi-stage build and applies
23 # a Docker tag from the string in file container-tag.yaml
24
25 #FROM golang:1.12.1 as alarmadapter
26 FROM nexus3.o-ran-sc.org:10004/bldr-ubuntu18-c-go:3-u18.04-nng as alarmadapter
27
28 RUN apt update && apt install -y iputils-ping net-tools curl
29
30 # Install RMr shared library & development header files
31 ARG RMRVERSION=3.2.4
32 RUN wget --content-disposition https://packagecloud.io/o-ran-sc/staging/packages/debian/stretch/rmr_${RMRVERSION}_amd64.deb/download.deb && dpkg -i rmr_${RMRVERSION}_amd64.deb && rm -rf rmr_${RMRVERSION}_amd64.deb
33 RUN wget --content-disposition https://packagecloud.io/o-ran-sc/staging/packages/debian/stretch/rmr-dev_${RMRVERSION}_amd64.deb/download.deb && dpkg -i rmr-dev_${RMRVERSION}_amd64.deb && rm -rf rmr-dev_${RMRVERSION}_amd64.deb
34
35 ENV PATH="/usr/local/go/bin:${PATH}"
36 ENV GOPATH /go
37
38 RUN mkdir -p /go/bin
39 RUN cd /go/bin \
40     && wget --quiet https://github.com/go-swagger/go-swagger/releases/download/v0.19.0/swagger_linux_amd64 \
41     && mv swagger_linux_amd64 swagger \
42     && chmod +x swagger
43
44 RUN mkdir -p /go/src/alarm-adapter
45 WORKDIR "/go/src/alarm-adapter"
46 COPY go.sum .
47 COPY go.mod .
48
49 RUN go mod download
50
51 COPY . /go/src/alarm-adapter
52 WORKDIR "/go/src/alarm-adapter/adapter"
53
54 # build and run UT
55 RUN ldconfig
56 RUN ./build_adapter.sh
57
58 # Final, executable container
59 FROM ubuntu:16.04
60
61 COPY --from=alarmadapter /go/src/alarm-adapter/adapter/run_adapter.sh /
62 COPY --from=alarmadapter /go/src/alarm-adapter/adapter/alarm-adapter /
63 COPY --from=alarmadapter /go/src/alarm-adapter/config/* /
64 COPY --from=alarmadapter /usr/local/include /usr/local/include
65 COPY --from=alarmadapter /usr/local/lib /usr/local/lib
66
67 RUN ldconfig
68
69 RUN chmod 755 /run_adapter.sh
70 CMD /run_adapter.sh