blob: f991c8aa696af40722a03a6c9e932d90458bf0d4 [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
wahidwbb304df2021-02-01 07:49:52 +000021FROM nexus3.o-ran-sc.org:10002/o-ran-sc/bldr-ubuntu18-c-go:1.9.0 as ubuntu-alarm-manager
Mohamed Abukar4e7e7122020-03-04 10:01:45 +020022
Mohamed Abukar273c8e82021-10-21 10:02:07 +030023RUN apt update && apt install --reinstall -y ca-certificates && update-ca-certificates
24
Mohamed Abukarebe58c22020-03-13 14:40:47 +020025# Install utilities
26RUN apt update && apt install -y iputils-ping net-tools curl sudo
Mohamed Abukar4e7e7122020-03-04 10:01:45 +020027
Mohamed Abukarebe58c22020-03-13 14:40:47 +020028# Install dependencies, compile and test the module
Abukar Mohamed121e8b62020-09-18 11:41:33 +000029RUN mkdir -p /go/src/am
vipin098edb92020-10-23 08:42:33 +000030RUN mkdir -p /cfg
Abukar Mohamed121e8b62020-09-18 11:41:33 +000031COPY . /go/src/am
Mohamed Abukarebe58c22020-03-13 14:40:47 +020032
Abukar Mohamed121e8b62020-09-18 11:41:33 +000033WORKDIR "/go/src/am"
34RUN ./build/build_ubuntu.sh
Mohamed Abukar4e7e7122020-03-04 10:01:45 +020035
Mohamed Abukarebe58c22020-03-13 14:40:47 +020036# Final, executable and deployable container
Anssi Mannila37f0bbb2020-11-26 12:38:21 +020037FROM ubuntu:18.04
Mohamed Abukar4e7e7122020-03-04 10:01:45 +020038
Abukar Mohamed121e8b62020-09-18 11:41:33 +000039COPY --from=ubuntu-alarm-manager /go/src/am/build/run.sh /
40COPY --from=ubuntu-alarm-manager /go/src/am/manager/alarm-manager /
vipin6f73fa32020-10-06 06:51:53 +000041COPY --from=ubuntu-alarm-manager /go/src/am/cli/alarm-cli /
Anssi Mannila00894a42020-10-19 11:36:26 +030042COPY --from=ubuntu-alarm-manager /go/src/am/testresources/perf-alarm-object.json /
43COPY --from=ubuntu-alarm-manager /go/src/am/testresources/perf-alarm-definition.json /
vipin098edb92020-10-23 08:42:33 +000044COPY --from=ubuntu-alarm-manager /go/src/am/config/* /cfg/
Abukar Mohamed121e8b62020-09-18 11:41:33 +000045COPY --from=ubuntu-alarm-manager /usr/local/lib /usr/local/lib
vipin14323a92020-09-25 10:03:43 +000046COPY --from=ubuntu-alarm-manager /go/src/am/definitions/* /
Mohamed Abukar4e7e7122020-03-04 10:01:45 +020047
48RUN ldconfig
vipin6f73fa32020-10-06 06:51:53 +000049ENV DEF_FILE="./alarm-definition.json"
50ENV PERF_DEF_FILE="./perf-alarm-definition.json"
51ENV PERF_OBJ_FILE="./perf-alarm-object.json"
Mohamed Abukar4e7e7122020-03-04 10:01:45 +020052
Abukar Mohamed121e8b62020-09-18 11:41:33 +000053RUN chmod 755 /run.sh
54CMD /run.sh