X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=Dockerfile;h=6143fdb45c7a661d385af508aedebffa62d2598f;hb=896c3acac45d9e23300072e0cf544bf728396066;hp=0cfc32083b1823afb846609c3e68b45a95b78207;hpb=303e57cbddf5d0d5e77e2bf7ec60643fcf525419;p=ric-plt%2Fsubmgr.git diff --git a/Dockerfile b/Dockerfile index 0cfc320..6143fdb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,31 +20,146 @@ # Abstract: Builds a container to compile Subscription Manager's code # Date: 28 May 2019 # -FROM nexus3.o-ran-sc.org:10004/bldr-ubuntu18-c-go:1-u18.04-nng1.1.1 as submgrbuild +########################################################### +# +########################################################### +FROM nexus3.o-ran-sc.org:10004/bldr-ubuntu18-c-go:4-u18.04-nng as submgrcore + +RUN apt update && apt install -y iputils-ping net-tools curl tcpdump gdb valgrind -COPY . /opt/submgr +WORKDIR /tmp +ARG RMRVERSION=3.2.4 # Install RMr shared library -RUN wget --content-disposition https://packagecloud.io/o-ran-sc/master/packages/debian/stretch/rmr_1.0.36_amd64.deb/download.deb && dpkg -i rmr_1.0.36_amd64.deb +RUN wget --content-disposition https://packagecloud.io/o-ran-sc/staging/packages/debian/stretch/rmr_${RMRVERSION}_amd64.deb/download.deb && dpkg -i rmr_${RMRVERSION}_amd64.deb && rm -rf rmr_${RMRVERSION}_amd64.deb # Install RMr development header files -RUN wget --content-disposition https://packagecloud.io/o-ran-sc/master/packages/debian/stretch/rmr-dev_1.0.36_amd64.deb/download.deb && dpkg -i rmr-dev_1.0.36_amd64.deb +RUN wget --content-disposition https://packagecloud.io/o-ran-sc/staging/packages/debian/stretch/rmr-dev_${RMRVERSION}_amd64.deb/download.deb && dpkg -i rmr-dev_${RMRVERSION}_amd64.deb && rm -rf rmr-dev_${RMRVERSION}_amd64.deb + +# "Installing Swagger" +RUN wget --quiet https://github.com/go-swagger/go-swagger/releases/download/v0.19.0/swagger_linux_amd64 \ + && mv swagger_linux_amd64 swagger \ + && chmod +x swagger \ + && mkdir -p /root/.go/bin \ + && mv swagger /root/.go/bin + +ENV GOPATH=/root/.go +ENV PATH=$PATH:/root/.go/bin +RUN go get -u github.com/go-delve/delve/cmd/dlv + +WORKDIR /opt/submgr + +########################################################### +# +########################################################### +FROM submgrcore as submgre2apbuild + + +ENV CFLAGS="-DASN_DISABLE_OER_SUPPORT" +ENV CGO_CFLAGS="-DASN_DISABLE_OER_SUPPORT" + +COPY 3rdparty 3rdparty +RUN cd 3rdparty/libe2ap && \ + gcc -c ${CFLAGS} -I. -g -fPIC *.c && \ + gcc *.o -g -shared -o libe2ap.so && \ + cp libe2ap.so /usr/local/lib/ && \ + cp *.h /usr/local/include/ && \ + ldconfig + +COPY e2ap e2ap +RUN cd e2ap/libe2ap_wrapper && \ + gcc -c ${CFLAGS} -g -fPIC *.c && \ + gcc *.o -g -shared -o libe2ap_wrapper.so && \ + cp libe2ap_wrapper.so /usr/local/lib/ && \ + cp *.h /usr/local/include/ && \ + ldconfig -# "PULLING LOG and COMPILING LOG" -RUN git clone "https://gerrit.o-ran-sc.org/r/com/log" /opt/log && cd /opt/log && \ - ./autogen.sh && ./configure && make install && ldconfig +# unittest +RUN cd e2ap && go test -v ./pkg/conv +RUN cd e2ap && go test -v ./pkg/e2ap_wrapper -# "COMPILING Subscription manager" -RUN mkdir -p /opt/bin && cd /opt/submgr && \ - /usr/local/go/bin/go get && \ - /usr/local/go/bin/go build -o /opt/bin/submgr ./cmd/submgr.go && \ - mkdir -p /opt/build/container/usr/local +# test formating (not important) +RUN cd e2ap && test -z "$(gofmt -l pkg/conv/*.go)" +RUN cd e2ap && test -z "$(gofmt -l pkg/e2ap_wrapper/*.go)" +RUN cd e2ap && test -z "$(gofmt -l pkg/e2ap/*.go)" +RUN cd e2ap && test -z "$(gofmt -l pkg/e2ap/e2ap_tests/*.go)" + + +########################################################### +# +########################################################### +FROM submgre2apbuild as submgrbuild +# +# +# +COPY go.mod go.mod +COPY go.sum go.sum + +RUN go mod download +RUN go mod tidy + +# +# +# +RUN mkdir pkg +COPY api api + +ARG RTMGRVERSION=cd7867c8f527f46fd8702b0b8d6b380a8e134bea + +RUN git clone "https://gerrit.o-ran-sc.org/r/ric-plt/rtmgr" \ + && git -C "rtmgr" checkout $RTMGRVERSION \ + && cp rtmgr/api/routing_manager.yaml api/ \ + && rm -rf rtmgr + + +RUN mkdir -p /root/go && \ + swagger generate client -f api/routing_manager.yaml -t pkg/ -m rtmgr_models -c rtmgr_client + + +# +# +# +COPY pkg pkg +COPY cmd cmd + +RUN mkdir -p /opt/bin && \ + go build -o /opt/bin/submgr cmd/submgr.go && \ + mkdir -p /opt/build/container/usr/local + + +RUN go mod tidy + +# unittest +COPY test/config-file.json test/config-file.json +ENV CFG_FILE=/opt/submgr/test/config-file.json + +RUN go test -test.coverprofile /tmp/submgr_cover.out -count=1 -v ./pkg/control + +#-c -o submgr_test +#RUN ./submgr_test -test.coverprofile /tmp/submgr_cover.out + +RUN go tool cover -html=/tmp/submgr_cover.out -o /tmp/submgr_cover.html + +# test formating (not important) +RUN test -z "$(gofmt -l pkg/control/*.go)" +RUN test -z "$(gofmt -l pkg/teststub/*.go)" +RUN test -z "$(gofmt -l pkg/teststubdummy/*.go)" +RUN test -z "$(gofmt -l pkg/teststube2ap/*.go)" +RUN test -z "$(gofmt -l pkg/xapptweaks/*.go)" + + +########################################################### +# +########################################################### FROM ubuntu:18.04 -COPY --from=submgrbuild /opt/bin/submgr /opt/submgr/config/submgr.yaml / +RUN apt update && apt install -y iputils-ping net-tools curl tcpdump + COPY run_submgr.sh / +COPY --from=submgrbuild /opt/bin/submgr / COPY --from=submgrbuild /usr/local/include /usr/local/include COPY --from=submgrbuild /usr/local/lib /usr/local/lib RUN ldconfig -CMD /run_submgr.sh \ No newline at end of file +RUN chmod 755 /run_submgr.sh +CMD /run_submgr.sh