Modify the code of scaling
[vfc/nfvo/lcm.git] / docker / Dockerfile
index bcff9c5..28b259c 100755 (executable)
@@ -30,14 +30,14 @@ ADD . /service
 WORKDIR /service
 
 # get binary zip from nexus - vfc-nfvo-lcm
-RUN wget -q -O vfc-nfvo-lcm.zip 'https://nexus.onap.org/service/local/artifact/maven/redirect?r=snapshots&g=org.onap.vfc.nfvo.lcm&a=vfc-nfvo-lcm&v=LATEST&e=zip' && \
+RUN wget -q -O vfc-nfvo-lcm.zip 'https://nexus.onap.org/service/local/artifact/maven/redirect?r=staging&g=org.onap.vfc.nfvo.lcm&a=vfc-nfvo-lcm&v=LATEST&e=zip' && \
     unzip vfc-nfvo-lcm.zip && \
     rm -rf vfc-nfvo-lcm.zip
 
 RUN sed -i "s|bind-address.*|# bind-address = 127.0.0.1|" /etc/mysql/my.cnf
 
 WORKDIR /service/vfc/nfvo/lcm
-RUN pip install -r requirements.txt
+RUN pip install --pre -r requirements.txt
 
 EXPOSE 8403
 EXPOSE 3306