diff options
author | ying.yunlong <ying.yunlong@zte.com.cn> | 2017-09-06 10:19:34 +0800 |
---|---|---|
committer | ying.yunlong <ying.yunlong@zte.com.cn> | 2017-09-06 10:19:34 +0800 |
commit | af6099d0f94f23d744131572aa34a1d51a123f43 (patch) | |
tree | 1745aa6362f9411814e7ddd5425bd8335823a22e /gvnfmadapter/docker/Dockerfile | |
parent | c8ad13d7b66512f320d806b0b5a2ef0d0703273c (diff) |
Add gvnfm-driver dockerfile and build scripts
Change-Id: I5d95d3d00bc6417c6a42317263344d08bab2bc81
Issue-ID: VFC-285
Signed-off-by: ying.yunlong <ying.yunlong@zte.com.cn>
Diffstat (limited to 'gvnfmadapter/docker/Dockerfile')
-rw-r--r-- | gvnfmadapter/docker/Dockerfile | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/gvnfmadapter/docker/Dockerfile b/gvnfmadapter/docker/Dockerfile new file mode 100644 index 0000000..60b9235 --- /dev/null +++ b/gvnfmadapter/docker/Dockerfile @@ -0,0 +1,36 @@ +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 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 + +ADD . /service +WORKDIR /service + +# get binary zip from nexus +RUN wget -q -O vfc-nfvo-driver-vnfm-gvnfm-gvnfmadapter.zip 'https://nexus.onap.org/service/local/artifact/maven/redirect?r=snapshots&g=org.onap.vfc.nfvo.driver.vnfm.gvnfm.gvnfmadapter&a=vfc-nfvo-driver-vnfm-gvnfm-gvnfmadapter&v=LATEST&e=zip' && \ + unzip vfc-nfvo-driver-vnfm-gvnfm-gvnfmadapter.zip && \ + rm -rf vfc-nfvo-driver-vnfm-gvnfm-gvnfmadapter.zip + +WORKDIR /service/vfc/nfvo/driver/vnfm/gvnfm/gvnfmadapter +RUN pip install -r requirements.txt + +EXPOSE 8484 + +WORKDIR /service +ENTRYPOINT vfc/nfvo/driver/vnfm/gvnfm/gvnfmadapter/docker/docker-entrypoint.sh |