X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=Dockerfile;h=604ba3baab7f820dbcb373994e29b66449bdfdd5;hb=refs%2Fheads%2Fh-release;hp=5d42436b3f654f8da4b9298be815c362d492442f;hpb=2392e6e49a6567a5d7477a93780b327238ee98b8;p=ric-plt%2Fsubmgr.git diff --git a/Dockerfile b/Dockerfile index 5d42436..604ba3b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,7 +25,7 @@ ########################################################### FROM nexus3.o-ran-sc.org:10002/o-ran-sc/bldr-ubuntu20-c-go:1.0.0 as submgrcore -ARG GOVERSION="1.17.8" +ARG GOVERSION="1.18.5" RUN wget -nv https://dl.google.com/go/go${GOVERSION}.linux-amd64.tar.gz \ && tar -xf go${GOVERSION}.linux-amd64.tar.gz \ && mv go /opt/go/${GOVERSION} \ @@ -65,7 +65,7 @@ RUN export GOBIN=/usr/local/bin/ ; \ # # RMR # -ARG RMRVERSION=4.8.0 +ARG RMRVERSION=4.9.1 ARG RMRLIBURL=https://packagecloud.io/o-ran-sc/release/packages/debian/stretch/rmr_${RMRVERSION}_amd64.deb/download.deb ARG RMRDEVURL=https://packagecloud.io/o-ran-sc/release/packages/debian/stretch/rmr-dev_${RMRVERSION}_amd64.deb/download.deb RUN wget --content-disposition ${RMRLIBURL} && dpkg -i rmr_${RMRVERSION}_amd64.deb @@ -91,7 +91,7 @@ ENV CFLAGS="-DASN_DISABLE_OER_SUPPORT" ENV CGO_CFLAGS="-DASN_DISABLE_OER_SUPPORT" COPY 3rdparty 3rdparty -RUN cd 3rdparty/E2AP-v01.00.00 && \ +RUN cd 3rdparty/E2AP-v02.00.00 && \ gcc -c ${CFLAGS} -I. -g -fPIC *.c && \ gcc *.o -g -shared -o libe2ap.so && \ cp libe2ap.so /usr/local/lib/ && \ @@ -99,7 +99,7 @@ RUN cd 3rdparty/E2AP-v01.00.00 && \ ldconfig -RUN echo "E2AP E2AP-v01.00.00" >> /manifests/versions.txt +RUN echo "E2AP E2AP-v02.00.00" >> /manifests/versions.txt COPY e2ap e2ap