blob: a530771f306e25784be5c0c5b81b6678e826e095 [file] [log] [blame]
Lott, Christopher (cl778h)3e8e2aa2020-06-03 08:52:14 -04001# Copyright (c) 2020 AT&T Intellectual Property.
2# Copyright (c) 2020 Nokia.
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
16# This source code is part of the near-RT RIC (RAN Intelligent Controller)
17# platform project (RICP).
18#
19# Test the alarm library by issuing this command from the alarm/ subdirectory:
20# docker build -f Dockerfile-Unit-Test .
21
22FROM golang:1.12
23
24# install rmr headers and libraries
25ARG RMRVERSION=4.0.5
26RUN wget -nv --content-disposition https://packagecloud.io/o-ran-sc/release/packages/debian/stretch/rmr_${RMRVERSION}_amd64.deb/download.deb \
27 && dpkg -i rmr_${RMRVERSION}_amd64.deb \
28 && rm -rf rmr_${RMRVERSION}_amd64.deb
29RUN wget -nv --content-disposition https://packagecloud.io/o-ran-sc/release/packages/debian/stretch/rmr-dev_${RMRVERSION}_amd64.deb/download.deb \
30 && dpkg -i rmr-dev_${RMRVERSION}_amd64.deb \
31 && rm -rf rmr-dev_${RMRVERSION}_amd64.deb
32RUN ldconfig
33RUN mkdir -p /tmp/alarm
34COPY . /tmp/alarm
35RUN cd /tmp/alarm && go test . -v