summaryrefslogtreecommitdiffstats
path: root/docker/Dockerfile
diff options
context:
space:
mode:
authorfengyuanxing <feng.yuanxing@zte.com.cn>2017-09-05 14:46:12 +0800
committerfengyuanxing <feng.yuanxing@zte.com.cn>2017-09-05 15:47:56 +0800
commit583408b26920a38ed189a3bc0a8df7c7ad5028be (patch)
treecefd5909bea9a623ca081081f39366e32c9de33c /docker/Dockerfile
parentc5fd5f6016b8bef47b00eed0dbaebeced7265f7d (diff)
Delete unnecessary files
Change-Id: I3224eb7ddbe66ccea30c1b1833111ef9af56f83c Issue-Id: VFC-276 Signed-off-by: fengyuanxing <feng.yuanxing@zte.com.cn>
Diffstat (limited to 'docker/Dockerfile')
-rwxr-xr-xdocker/Dockerfile43
1 files changed, 43 insertions, 0 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile
new file mode 100755
index 00000000..768906e6
--- /dev/null
+++ b/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-catalog
+RUN wget -q -O vfc-nfvo-catalog.zip 'https://nexus.onap.org/service/local/artifact/maven/redirect?r=snapshots&g=org.onap.vfc.nfvo.catalog&a=vfc-nfvo-catalog&v=LATEST&e=zip' && \
+ unzip vfc-nfvo-catalog.zip && \
+ rm -rf vfc-nfvo-catalog.zip
+
+EXPOSE 8403
+EXPOSE 3306
+EXPOSE 6379
+
+WORKDIR /service
+ENTRYPOINT vfc/nfvo/catalog/docker/docker-entrypoint.sh