diff options
author | ying.yunlong <ying.yunlong@zte.com.cn> | 2017-09-04 15:37:05 +0800 |
---|---|---|
committer | ying.yunlong <ying.yunlong@zte.com.cn> | 2017-09-04 15:37:05 +0800 |
commit | df054edf1951536181eeb7918ba9362471a19358 (patch) | |
tree | ad4a25adb7a14e335eb45e7730581bc73d91c902 /res/docker/Dockerfile | |
parent | 09c42913e057f4f0e5507e9c994827cd8af33f60 (diff) |
Add vnfres docker build files
Add docker build files to build
vfc gvnfm vnfres docker images.
Change-Id: I8bc366de6d750bce627716c96f1feabb44a1c035
Issue-ID: VFC-255
Signed-off-by: ying.yunlong <ying.yunlong@zte.com.cn>
Diffstat (limited to 'res/docker/Dockerfile')
-rw-r--r-- | res/docker/Dockerfile | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/res/docker/Dockerfile b/res/docker/Dockerfile new file mode 100644 index 0000000..920fda5 --- /dev/null +++ b/res/docker/Dockerfile @@ -0,0 +1,43 @@ +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 && \ + yes | pip install cryptography + +ADD . /service +WORKDIR /service + +# get binary zip from nexus - vfc-nfvo-lcm +RUN wget -q -O vfc-gvnfm-vnfres.zip 'https://nexus.onap.org/service/local/artifact/maven/redirect?r=snapshots&g=org.onap.vfc.gvnfm.vnfres&a=vfc-gvnfm-vnfres-res&v=LATEST&e=zip' && \ + unzip vfc-gvnfm-vnfres.zip && \ + rm -rf vfc-gvnfm-vnfres.zip + +EXPOSE 8802 +EXPOSE 3306 +EXPOSE 6379 + +WORKDIR /service +ENTRYPOINT vfc/gvnfm/vnfres/res/docker/docker-entrypoint.sh |