TS pred logic
Issue-ID: RICAPP-19
Signed-off-by: Ron Shacham <rshacham@research.att.com>
Change-Id: Id64cd20bc14533f4c01ea0775dbfd53e4fca1ba0
diff --git a/Dockerfile b/Dockerfile
index 6201076..1f8f596 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -40,7 +40,7 @@
WORKDIR /playpen
# versions we snarf from package cloud
-ARG RMR_VER=4.0.2
+ARG RMR_VER=4.0.5
ARG SDL_VER=1.0.4
ARG XFCPP_VER=1.0.0
@@ -65,6 +65,16 @@
wget -nv --content-disposition ${PC_STG_URL}/sdl-dev_${SDL_VER}-1_amd64.deb/download.deb &&\
dpkg -i sdl-dev_${SDL_VER}-1_amd64.deb sdl_${SDL_VER}-1_amd64.deb
+RUN git clone https://github.com/Tencent/rapidjson && \
+ cd rapidjson && \
+ mkdir build && \
+ cd build && \
+ cmake -DCMAKE_INSTALL_PREFIX=/usr/local .. && \
+ make install && \
+ cd ${STAGE_DIR} && \
+ rm -rf rapidjson
+
+
#
# build and install the application(s)