Update vfc-svnfm-zte release vsersion
[vfc/nfvo/driver/vnfm/svnfm.git] / zte / vmanager / docker / Dockerfile
index fcc126b..60ad085 100644 (file)
@@ -1,37 +1,18 @@
-FROM ubuntu:14.04
+FROM python:3.8-alpine
 
 ARG HTTP_PROXY=${HTTP_PROXY}
 ARG HTTPS_PROXY=${HTTPS_PROXY}
-
+ARG PKG_VERSION
 ENV http_proxy $HTTP_PROXY
 ENV https_proxy $HTTPS_PROXY
-
-RUN echo "mysql-server mysql-server/root_password password root" | debconf-set-selections
-RUN echo "mysql-server mysql-server/root_password_again password root" | debconf-set-selections
-
-RUN apt-get update && \
-    apt-get install -y python-virtualenv && \
-    apt-get install -y python-setuptools && \
-    apt-get install -y python-dev && \
-    apt-get install -y python-pip && \
-    apt-get install -y gcc && \
-    apt-get install -y wget && \
-    apt-get install -y unzip && \
-    apt-get install -y curl && \
-    apt-get install -y build-essential && \
-    apt-get install -y libssl-dev && \
-    apt-get install -y libffi-dev && \
-    yes | pip install cryptography
+ENV pkg_verison=${PKG_VERSION}
 
 ADD . /service
 WORKDIR /service
 
-# get binary zip from nexus - vfc-nfvo-driver-vnfm-svnfm-zte-vmanager
-RUN wget -q -O vfc-nfvo-driver-vnfm-svnfm-zte-vmanager.zip 'https://nexus.onap.org/service/local/artifact/maven/redirect?r=snapshots&g=org.onap.vfc.nfvo.driver.vnfm.svnfm&a=vfc-nfvo-driver-vnfm-svnfm-zte-vmanager&v=LATEST&e=zip' && \
-    unzip vfc-nfvo-driver-vnfm-svnfm-zte-vmanager.zip && \
-    rm -rf vfc-nfvo-driver-vnfm-svnfm-zte-vmanager.zip
+RUN sh /service/docker-env-conf.sh
 
 EXPOSE 8410
-
+USER onap
 WORKDIR /service
 ENTRYPOINT vfc/nfvo/driver/vnfm/svnfm/zte/vmanager/docker/docker-entrypoint.sh