X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=Dockerfile;h=be8d8da50c4f39a868c046e281dd807d0c1b063f;hb=0d664f2d3a2449948c2477798671464a538a06b7;hp=724144126fbef5ad49ef95d349ce5c4cf353f23d;hpb=e530c9a02789f83907e3044ae467711b7d5de863;p=ric-plt%2Fa1.git diff --git a/Dockerfile b/Dockerfile index 7241441..be8d8da 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,14 +14,19 @@ # See the License for the specific language governing permissions and # limitations under the License. # ================================================================================== + +# CI to build a Docker image with the A1 mediator +# Adds gcc and cmake to build RMr library + FROM python:3.7 ADD . /tmp -# Install RMR +# Install RMr 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 +# This pins RMr to a known working version RUN git checkout 68d09fa5028e47e763c44c30647da31e77eda64a RUN mkdir .build; cd .build; cmake ..; make install