From: garciadeblas Date: Thu, 7 Aug 2025 08:45:37 +0000 (+0200) Subject: Feature 11061. Remove N2VC dependency from MON Dockerfile X-Git-Tag: v18.0.0~9 X-Git-Url: https://osm.etsi.org/gitweb/?a=commitdiff_plain;h=5f7810b381e33144c440eb350fdd41f22d225db6;p=osm%2Fdevops.git Feature 11061. Remove N2VC dependency from MON Dockerfile Change-Id: Icbc552607cc995ba3689d08e6291299057373508 Signed-off-by: garciadeblas --- diff --git a/docker/MON/Dockerfile b/docker/MON/Dockerfile index d37ce742..55255ec8 100644 --- a/docker/MON/Dockerfile +++ b/docker/MON/Dockerfile @@ -41,19 +41,14 @@ RUN DEBIAN_FRONTEND=noninteractive apt-get --yes update && \ ARG PYTHON3_OSM_COMMON_URL ARG PYTHON3_OSM_MON_URL -ARG PYTHON3_N2VC_URL RUN curl $PYTHON3_OSM_COMMON_URL -o osm_common.deb RUN dpkg -i ./osm_common.deb -RUN curl $PYTHON3_N2VC_URL -o n2vc.deb -RUN dpkg -i ./n2vc.deb - RUN curl $PYTHON3_OSM_MON_URL -o osm_mon.deb RUN dpkg -i ./osm_mon.deb RUN pip3 install \ - -r /usr/lib/python3/dist-packages/n2vc/requirements.txt \ -r /usr/lib/python3/dist-packages/osm_common/requirements.txt \ -r /usr/lib/python3/dist-packages/osm_mon/requirements.txt