Merge "Fix docker build error for nslcm"
authormaopeng zhang <zhang.maopeng1@zte.com.cn>
Wed, 17 Oct 2018 01:48:25 +0000 (01:48 +0000)
committerGerrit Code Review <gerrit@onap.org>
Wed, 17 Oct 2018 01:48:25 +0000 (01:48 +0000)
docker/Dockerfile

index 2334995..32fc802 100755 (executable)
@@ -33,7 +33,8 @@ RUN wget -q -O vfc-nfvo-lcm.zip 'https://nexus.onap.org/service/local/artifact/m
     rm -rf vfc-nfvo-lcm.zip
 
 WORKDIR /service/vfc/nfvo/lcm
-RUN pip install --pre -r requirements.txt
+RUN pip install --upgrade setuptools pip && \
+    pip install --pre -r requirements.txt
 
 EXPOSE 8403