blob: b774e02bcc3df30272c296593eadab502d69b535 [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 /
38COPY --from=ubuntu-alarm-manager /go/src/am/config/* /
39COPY --from=ubuntu-alarm-manager /usr/local/lib /usr/local/lib
Mohamed Abukar4e7e7122020-03-04 10:01:45 +020040
41RUN ldconfig
42
Abukar Mohamed121e8b62020-09-18 11:41:33 +000043RUN chmod 755 /run.sh
44CMD /run.sh