blob: 479fcd532e40e9b026a3d7554e92708cb166eada [file] [log] [blame]
Ron Shacham33d72362020-05-18 12:54:54 -04001# ==================================================================================
2# Copyright (c) 2020 AT&T Intellectual Property.
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# ==================================================================================
16FROM nexus3.o-ran-sc.org:10004/o-ran-sc/bldr-ubuntu18-c-go:8-u18.04 as buildenv
17
18RUN mkdir /playpen
19RUN mkdir /playpen/src
20
21ENV LD_LIBRARY_PATH=/usr/local/lib
22
Ron Shacham33d72362020-05-18 12:54:54 -040023RUN apt-get install -y cpputest
24RUN apt-get remove -y libboost-all-dev
25RUN apt-get install -y libboost-all-dev
26RUN apt-get install -y libhiredis-dev
27RUN apt-get install -y valgrind
28
29
30RUN git clone https://gerrit.o-ran-sc.org/r/ric-plt/sdl
31RUN cd sdl && \
32 ./autogen.sh && \
33 ./configure && \
34 make all && \
35 make install
36
37
38COPY src/* /playpen/src/
39
40RUN cd /playpen/src; make
41
42ENV DBAAS_HOSTNAME="6379"
43ENV DBAAS_SERVICE_HOST="service-ricplt-dbaas-tcp.ricplt"
44
45WORKDIR /playpen/src
46
Ron Shacham0d75ec82020-06-11 23:22:01 -040047CMD ./write_sdl