summaryrefslogtreecommitdiffstats
path: root/windriver/docker/Dockerfile
diff options
context:
space:
mode:
authorBin Yang <bin.yang@windriver.com>2017-09-20 11:18:35 +0800
committerBin Yang <bin.yang@windriver.com>2017-09-20 11:18:35 +0800
commita7da9df2316973357945636cc4f122746722a492 (patch)
tree80cd43e5b401fefbdc3b15b53e508c277fde4ade /windriver/docker/Dockerfile
parent8d5f1fee55c1dcd3cab38441e8a1dd5743587303 (diff)
Add windriver plugin
Change-Id: Icd27d7af12d6920810d7cbb163e8be70db49f121 Issue-Id: MULTICLOUD-89 Signed-off-by: Bin Yang <bin.yang@windriver.com>
Diffstat (limited to 'windriver/docker/Dockerfile')
-rw-r--r--windriver/docker/Dockerfile31
1 files changed, 31 insertions, 0 deletions
diff --git a/windriver/docker/Dockerfile b/windriver/docker/Dockerfile
new file mode 100644
index 00000000..ac2e62ef
--- /dev/null
+++ b/windriver/docker/Dockerfile
@@ -0,0 +1,31 @@
+FROM python:2
+
+ARG HTTP_PROXY=${HTTP_PROXY}
+ARG HTTPS_PROXY=${HTTPS_PROXY}
+
+ENV http_proxy $HTTP_PROXY
+ENV https_proxy $HTTPS_PROXY
+
+ENV MSB_ADDR "127.0.0.1"
+ENV MSB_PORT "80"
+ENV AAI_ADDR "aai.api.simpledemo.openecomp.org"
+ENV AAI_PORT "8443"
+ENV AAI_SCHEMA_VERSION "v11"
+ENV AAI_USERNAME "AAI"
+ENV AAI_PASSWORD "AAI"
+
+EXPOSE 9005
+
+# COPY ./ /opt/windriver/
+RUN apt-get update && \
+ apt-get install -y memcached && \
+ apt-get install -y unzip && \
+ cd /opt/ && \
+ wget -O multicloud-openstack-windriver.zip "https://nexus.onap.org/service/local/artifact/maven/redirect?r=snapshots&g=org.onap.multicloud.openstack&a=multicloud-openstack-windriver&e=zip&v=LATEST" && \
+ unzip -q -o -B multicloud-openstack-windriver.zip && \
+ chmod +x /opt/windriver/*.sh && \
+ rm -f multicloud-openstack-windriver.zip && \
+ pip install -r /opt/windriver/requirements.txt
+
+WORKDIR /opt/windriver
+CMD /bin/sh -c /opt/windriver/run.sh \ No newline at end of file