blob: ffb9ede8733b419947db2710367b5ea822a38a48 [file] [log] [blame]
Mohamed Abukar4e7e7122020-03-04 10:01:45 +02001#==================================================================================
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
26FROM nexus3.o-ran-sc.org:10004/bldr-ubuntu18-c-go:3-u18.04-nng as alarmadapter
27
28RUN apt update && apt install -y iputils-ping net-tools curl
29
30# Install RMr shared library & development header files
31ARG RMRVERSION=3.2.4
32RUN 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
33RUN 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
Mohamed Abukar4e7e7122020-03-04 10:01:45 +020035ENV PATH="/usr/local/go/bin:${PATH}"
36ENV GOPATH /go
37
38RUN mkdir -p /go/bin
39RUN 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
44RUN mkdir -p /go/src/alarm-adapter
45WORKDIR "/go/src/alarm-adapter"
46COPY go.sum .
47COPY go.mod .
48
49RUN go mod download
50
51COPY . /go/src/alarm-adapter
52WORKDIR "/go/src/alarm-adapter/adapter"
53
54# build and run UT
55RUN ldconfig
56RUN ./build_adapter.sh
57
58# Final, executable container
59FROM ubuntu:16.04
60
61COPY --from=alarmadapter /go/src/alarm-adapter/adapter/run_adapter.sh /
62COPY --from=alarmadapter /go/src/alarm-adapter/adapter/alarm-adapter /
63COPY --from=alarmadapter /go/src/alarm-adapter/config/* /
64COPY --from=alarmadapter /usr/local/include /usr/local/include
65COPY --from=alarmadapter /usr/local/lib /usr/local/lib
66
67RUN ldconfig
68
69RUN chmod 755 /run_adapter.sh
70CMD /run_adapter.sh