X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?p=sim%2Fo1-interface.git;a=blobdiff_plain;f=ntsimulator%2Fdeploy%2Fmanager%2FDockerfile;h=528c9de2736d555a396e0b1c88b0b89d2df1b9d4;hp=2ceef5fb5be25c5424eac66f65c22fb6cb2f1144;hb=0f82040e36cac5066e0d91572e14dc4dfa9cc7af;hpb=02b6266f34374e66bff5136674b215f5c32f61dd diff --git a/ntsimulator/deploy/manager/Dockerfile b/ntsimulator/deploy/manager/Dockerfile index 2ceef5f..528c9de 100644 --- a/ntsimulator/deploy/manager/Dockerfile +++ b/ntsimulator/deploy/manager/Dockerfile @@ -62,8 +62,8 @@ RUN mkdir /opt/dev WORKDIR /opt/dev # libcjson -COPY ./cJSON /opt/dev/cJSON RUN \ + git clone https://github.com/Melacon/cJSON.git && \ cd cJSON && mkdir build && cd build && \ cmake .. -DENABLE_CJSON_UTILS=On -DENABLE_CJSON_TEST=Off -DCMAKE_INSTALL_PREFIX=/usr .. && \ make -j2 && \ @@ -71,8 +71,8 @@ RUN \ ldconfig # libyang -COPY ./libyang /opt/dev/libyang RUN \ + git clone https://github.com/Melacon/libyang.git && \ cd libyang && mkdir build && cd build && \ cmake -DCMAKE_BUILD_TYPE:String="Release" -DENABLE_BUILD_TESTS=OFF .. && \ make -j2 && \ @@ -80,8 +80,8 @@ RUN \ ldconfig # sysrepo -COPY ./sysrepo /opt/dev/sysrepo RUN \ + git clone https://github.com/Melacon/sysrepo.git && \ sed -i 's/#define MAX_BLOCKS_AVAIL_FOR_ALLOC 3/#define MAX_BLOCKS_AVAIL_FOR_ALLOC 6/g' ./sysrepo/src/common/sr_mem_mgmt.h && \ cd sysrepo && mkdir build && cd build && \ cmake -DCMAKE_BUILD_TYPE:String="Release" -DENABLE_TESTS=OFF -DREPOSITORY_LOC:PATH=/etc/sysrepo -DREQUEST_TIMEOUT=60 -DOPER_DATA_PROVIDE_TIMEOUT=60 .. && \ @@ -90,8 +90,8 @@ RUN \ ldconfig # libnetconf2 -COPY ./libnetconf2 /opt/dev/libnetconf2 RUN \ + git clone https://github.com/Melacon/libnetconf2.git && \ cd libnetconf2 && mkdir build && cd build && \ cmake -DCMAKE_BUILD_TYPE:String="Release" -DENABLE_BUILD_TESTS=OFF .. && \ make -j2 && \ @@ -99,8 +99,9 @@ RUN \ ldconfig # keystore -COPY ./Netopeer2 /opt/dev/Netopeer2 RUN \ + cd /opt/dev && \ + git clone https://github.com/Melacon/Netopeer2.git && \ cd /opt/dev && \ cd Netopeer2 && \ cd keystored && mkdir build && cd build && \