From: garciadeblas Date: Tue, 16 Jul 2024 16:14:34 +0000 (+0200) Subject: Reorder installation of n2vc and lcm requirements in LCM Dockerfile X-Git-Tag: release-v16.0-start~12 X-Git-Url: https://osm.etsi.org/gitweb/?a=commitdiff_plain;h=refs%2Fchanges%2F93%2F14493%2F2;p=osm%2Fdevops.git Reorder installation of n2vc and lcm requirements in LCM Dockerfile Change-Id: Ie578638816105c15612fad3575e2cab0fcaec320 Signed-off-by: garciadeblas --- diff --git a/docker/LCM/Dockerfile b/docker/LCM/Dockerfile index af62d1fe..a9c12e6d 100644 --- a/docker/LCM/Dockerfile +++ b/docker/LCM/Dockerfile @@ -59,16 +59,16 @@ ARG PYTHON3_N2VC_URL RUN curl $PYTHON3_OSM_COMMON_URL -o osm_common.deb RUN dpkg -i ./osm_common.deb -RUN curl $PYTHON3_OSM_LCM_URL -o osm_lcm.deb -RUN dpkg -i ./osm_lcm.deb - RUN curl $PYTHON3_N2VC_URL -o osm_n2vc.deb RUN dpkg -i ./osm_n2vc.deb +RUN curl $PYTHON3_OSM_LCM_URL -o osm_lcm.deb +RUN dpkg -i ./osm_lcm.deb + RUN pip3 install \ -r /usr/lib/python3/dist-packages/osm_common/requirements.txt \ - -r /usr/lib/python3/dist-packages/osm_lcm/requirements.txt \ - -r /usr/lib/python3/dist-packages/n2vc/requirements.txt + -r /usr/lib/python3/dist-packages/n2vc/requirements.txt \ + -r /usr/lib/python3/dist-packages/osm_lcm/requirements.txt ####################################################################################### FROM ubuntu:22.04 as FINAL