diff options
author | ying.yunlong <ying.yunlong@zte.com.cn> | 2017-09-05 10:08:03 +0800 |
---|---|---|
committer | ying.yunlong <ying.yunlong@zte.com.cn> | 2017-09-05 10:08:03 +0800 |
commit | 1e909e49897dafe14e699e18af9751cc883c6dd9 (patch) | |
tree | c4c049602249bb76f6d91b06a9fadff3c2fb8fbb /zte/vmanager/docker/Dockerfile | |
parent | 24d9ff8abcdfa26ae39dcc428b239086d4d113e0 (diff) |
Add svnfm-driver docker scripts
Add vfc-nfvo-driver-vnfm-svnfm-zte-vmanager driver
docker build scripts.
Change-Id: I4912c93857ee35098a7139e65b452bdf687ff479
Issue-ID: VFC-271
Signed-off-by: ying.yunlong <ying.yunlong@zte.com.cn>
Diffstat (limited to 'zte/vmanager/docker/Dockerfile')
-rw-r--r-- | zte/vmanager/docker/Dockerfile | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/zte/vmanager/docker/Dockerfile b/zte/vmanager/docker/Dockerfile new file mode 100644 index 00000000..09a02e44 --- /dev/null +++ b/zte/vmanager/docker/Dockerfile @@ -0,0 +1,38 @@ +FROM ubuntu:14.04 + +ARG HTTP_PROXY=${HTTP_PROXY} +ARG HTTPS_PROXY=${HTTPS_PROXY} + +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 + +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 + +EXPOSE 8410 + +WORKDIR /service +ENTRYPOINT vfc/nfvo/driver/vnfm/svnfm/zte/vmanager/docker/docker-entrypoint.sh |