blob: b2d0884aa6e292317516ef05664c2e0a9707c8bf [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
Abukar Mohamed121e8b62020-09-18 11:41:33 +000021FROM nexus3.o-ran-sc.org:10004/o-ran-sc/bldr-ubuntu18-c-go:9-u18.04 as ubuntu-alarm-manager
Mohamed Abukar4e7e7122020-03-04 10:01:45 +020022
Mohamed Abukarebe58c22020-03-13 14:40:47 +020023# Install utilities
24RUN apt update && apt install -y iputils-ping net-tools curl sudo
Mohamed Abukar4e7e7122020-03-04 10:01:45 +020025
Mohamed Abukarebe58c22020-03-13 14:40:47 +020026# Install dependencies, compile and test the module
Abukar Mohamed121e8b62020-09-18 11:41:33 +000027RUN mkdir -p /go/src/am
28COPY . /go/src/am
Mohamed Abukarebe58c22020-03-13 14:40:47 +020029
Abukar Mohamed121e8b62020-09-18 11:41:33 +000030WORKDIR "/go/src/am"
31RUN ./build/build_ubuntu.sh
Mohamed Abukar4e7e7122020-03-04 10:01:45 +020032
Mohamed Abukarebe58c22020-03-13 14:40:47 +020033# Final, executable and deployable container
34FROM ubuntu:18.04
Mohamed Abukar4e7e7122020-03-04 10:01:45 +020035
Abukar Mohamed121e8b62020-09-18 11:41:33 +000036COPY --from=ubuntu-alarm-manager /go/src/am/build/run.sh /
37COPY --from=ubuntu-alarm-manager /go/src/am/manager/alarm-manager /
vipin6f73fa32020-10-06 06:51:53 +000038COPY --from=ubuntu-alarm-manager /go/src/am/cli/alarm-cli /
Anssi Mannila00894a42020-10-19 11:36:26 +030039COPY --from=ubuntu-alarm-manager /go/src/am/testresources/perf-alarm-object.json /
40COPY --from=ubuntu-alarm-manager /go/src/am/testresources/perf-alarm-definition.json /
Abukar Mohamed121e8b62020-09-18 11:41:33 +000041COPY --from=ubuntu-alarm-manager /go/src/am/config/* /
42COPY --from=ubuntu-alarm-manager /usr/local/lib /usr/local/lib
vipin14323a92020-09-25 10:03:43 +000043COPY --from=ubuntu-alarm-manager /go/src/am/definitions/* /
Mohamed Abukar4e7e7122020-03-04 10:01:45 +020044
45RUN ldconfig
vipin6f73fa32020-10-06 06:51:53 +000046ENV DEF_FILE="./alarm-definition.json"
47ENV PERF_DEF_FILE="./perf-alarm-definition.json"
48ENV PERF_OBJ_FILE="./perf-alarm-object.json"
Mohamed Abukar4e7e7122020-03-04 10:01:45 +020049
Abukar Mohamed121e8b62020-09-18 11:41:33 +000050RUN chmod 755 /run.sh
51CMD /run.sh