diff options
author | Shashank Kumar Shankar <shashank.kumar.shankar@intel.com> | 2017-09-05 15:52:48 -0700 |
---|---|---|
committer | Shashank Kumar Shankar <shashank.kumar.shankar@intel.com> | 2017-09-06 15:43:58 -0700 |
commit | d816d444383c73862535c89483c01e0d125a722c (patch) | |
tree | 29217fce57467df58742a792b5d66cb17629fbb6 /mgr/docker/Dockerfile | |
parent | dff6a11d425677eec5909d2cdab9cc1c277719c7 (diff) |
Add GVNFM VNFMGR Docker image and build scripts
This patch adds the scripts and Dockerfile for
building GVNFM/VNFGR docker image.
Change-Id: I4642228523691095ff77cd5fa0007d853e93b7d5
Issue-Id: VFC-282
Signed-off-by: Shashank Kumar Shankar <shashank.kumar.shankar@intel.com>
Diffstat (limited to 'mgr/docker/Dockerfile')
-rw-r--r-- | mgr/docker/Dockerfile | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/mgr/docker/Dockerfile b/mgr/docker/Dockerfile new file mode 100644 index 0000000..45c1545 --- /dev/null +++ b/mgr/docker/Dockerfile @@ -0,0 +1,47 @@ +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 libmysqlclient-dev && \ + apt-get install -y redis-server && \ + apt-get install -y mysql-server && \ + apt-get install -y mysql-client && \ + 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 - vfc-gvnfm-vnfmgr +RUN wget -q -O vfc-gvnfm-vnfmgr.zip 'https://nexus.onap.org/service/local/artifact/maven/redirect?r=snapshots&g=org.onap.vfc.gvnfm.vnfmgr&a=vfc-gvnfm-vnfmgr&v=LATEST&e=zip' && \ + unzip vfc-gvnfm-vnfmgr.zip && \ + rm -rf vfc-gvnfm-vnfmgr.zip + +RUN sed -i "s|bind-address.*|# bind-address = 127.0.0.1|" /etc/mysql/my.cnf + +WORKDIR /service/vfc/gvnfm/vnfmgr/mgr +RUN pip install -r requirements.txt + +EXPOSE 8803 +EXPOSE 3306 +EXPOSE 6379 + +WORKDIR /service +ENTRYPOINT vfc/gvnfm/vnfmgr/mgr/docker/docker-entrypoint.sh
\ No newline at end of file |