G release step 2
[ric-plt/alarm-go.git] / alarm / Dockerfile-Unit-Test
1 # 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
22 FROM golang:1.12
23
24 # install rmr headers and libraries
25 ARG RMRVERSION=4.0.5
26 RUN 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
29 RUN 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
32 RUN ldconfig
33 RUN mkdir -p /tmp/alarm
34 COPY . /tmp/alarm
35 RUN cd /tmp/alarm && go test . -v