Fix container tag
[ric-plt/a1.git] / Dockerfile
index 8b44500..7241441 100644 (file)
@@ -22,14 +22,20 @@ ADD . /tmp
 RUN apt-get update && apt-get install -y gcc git cmake
 RUN git clone https://gerrit.oran-osc.org/r/ric-plt/lib/rmr
 WORKDIR rmr
-RUN git checkout a012cf63dfdad3656c995cb06c316fd208c63b98
+RUN git checkout 68d09fa5028e47e763c44c30647da31e77eda64a
 RUN mkdir .build; cd .build; cmake ..; make install
 
 # Install python-rmr
-RUN pip install --upgrade pip 
+RUN pip install --upgrade pip
 
 #install a1
 WORKDIR /tmp
+
+# Run our unit tests
+RUN pip install tox
+RUN tox
+
+# do the actual install
 RUN pip install .
 EXPOSE 10000