X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=Dockerfile;h=0a2b217b965da6b90e5fe82bc9254d11d6151891;hb=c9ef0ba044f66201c34f42e3bb459e0ae4e6855b;hp=4b41bd41947d19a08165e262674416fd4bdbbf5f;hpb=c92b421ec9f89e77df36422987e478ed8db85299;p=ric-plt%2Fsubmgr.git diff --git a/Dockerfile b/Dockerfile index 4b41bd4..0a2b217 100644 --- a/Dockerfile +++ b/Dockerfile @@ -57,7 +57,7 @@ RUN export GOBIN=/usr/local/bin/ ; \ # # RMR # -ARG RMRVERSION=4.4.6 +ARG RMRVERSION=4.7.4 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 @@ -121,10 +121,7 @@ FROM submgre2apbuild as submgrbuild # # COPY go.mod go.mod -COPY go.sum go.sum - RUN go mod download -RUN go mod tidy # # @@ -153,13 +150,13 @@ RUN echo "rtmgrapi ${RTMGRVERSION} https://gerrit.o-ran-sc.org/r/ric-plt/rtmgr" COPY pkg pkg COPY cmd cmd +COPY go.sum go.sum +RUN go mod tidy + 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 - RUN cp go.mod go.sum /manifests/ RUN grep gerrit /manifests/go.sum > /manifests/go_gerrit.sum @@ -185,7 +182,7 @@ ENV RMR_SEED_RT=/opt/submgr/test/uta_rtg.rt RUN sed -r "s/^(::1.*)/#\1/" /etc/hosts > /etc/hosts.new \ && cat /etc/hosts.new > /etc/hosts \ && cat /etc/hosts \ - && go test -test.coverprofile /tmp/submgr_cover.out -count=1 -v ./pkg/control \ + && go test -failfast -test.coverprofile /tmp/submgr_cover.out -count=1 -v ./pkg/control \ && go tool cover -html=/tmp/submgr_cover.out -o /tmp/submgr_cover.html # test formating (not important) @@ -203,7 +200,6 @@ FROM ubuntu:18.04 RUN apt update && apt install -y iputils-ping net-tools curl tcpdump COPY --from=submgrbuild /manifests /manifests - COPY --from=submgrbuild /opt/bin/submgr / COPY --from=submgrbuild /usr/local/include /usr/local/include COPY --from=submgrbuild /usr/local/lib /usr/local/lib