Dockerfile.local: get OSM dependencies from v7.0 branch 76/8976/1 v7.1.0rc4
authortierno <alfonso.tiernosepulveda@telefonica.com>
Wed, 27 May 2020 07:52:24 +0000 (07:52 +0000)
committertierno <alfonso.tiernosepulveda@telefonica.com>
Wed, 27 May 2020 07:52:50 +0000 (07:52 +0000)
Change-Id: I9de69df70704ad6b1fe6a80d13b576d6554445bc
Signed-off-by: tierno <alfonso.tiernosepulveda@telefonica.com>
Dockerfile.local

index 2f34561..a49f2d3 100644 (file)
@@ -28,6 +28,7 @@ RUN apt-get update && apt-get install -y git python3 python3-jsonschema \
 
 # OSM_COMMON
 RUN git -C /app clone https://osm.etsi.org/gerrit/osm/common.git \
+    && git -C /app/common checkout v7.0 \
     && python3 -m pip install -e /app/common
 #    && cd common  && python3 setup.py develop && cd ..
 #    && pip3 install -U -r requirements.txt \
@@ -35,6 +36,7 @@ RUN git -C /app clone https://osm.etsi.org/gerrit/osm/common.git \
 
 # OSM_IM
 RUN git -C /app clone  https://osm.etsi.org/gerrit/osm/IM \
+    && git -C /app/IM checkout v7.0 \
     && python3 -m pip install /app/IM
 
 EXPOSE 9999