From d816d444383c73862535c89483c01e0d125a722c Mon Sep 17 00:00:00 2001 From: Shashank Kumar Shankar Date: Tue, 5 Sep 2017 15:52:48 -0700 Subject: 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 --- mgr/docker/Dockerfile | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 mgr/docker/Dockerfile (limited to 'mgr/docker/Dockerfile') 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 -- cgit 1.2.3-korg