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