summaryrefslogtreecommitdiffstats
path: root/docker/src/main/docker/Dockerfile
diff options
context:
space:
mode:
authorMickael JEZEQUEL <mickael.jezequel@orange.com>2018-03-09 17:44:34 +0100
committerMickael JEZEQUEL <mickael.jezequel@orange.com>2018-03-15 13:45:50 +0100
commitb071b23b024a07b5e0d9f1c915468384369e26af (patch)
treeac1ca80e07e1bf2bdffb79d26c37931348dd297a /docker/src/main/docker/Dockerfile
parentdd79a38607c40db86de950b4c1ecdff443fe68f4 (diff)
Dockerize rest API for ICE tests
Change-Id: I8928203bb76a20fb7d10fd05d06151e2c6b7a934 Issue-ID: VNFSDK-214 Signed-off-by: Mickael JEZEQUEL <mickael.jezequel@orange.com>
Diffstat (limited to 'docker/src/main/docker/Dockerfile')
-rw-r--r--docker/src/main/docker/Dockerfile29
1 files changed, 29 insertions, 0 deletions
diff --git a/docker/src/main/docker/Dockerfile b/docker/src/main/docker/Dockerfile
new file mode 100644
index 0000000..7b3f033
--- /dev/null
+++ b/docker/src/main/docker/Dockerfile
@@ -0,0 +1,29 @@
+FROM python:3.6.1
+
+ENV ICE_SETTINGS /opt/ice/ice-server/heat_test/prod_settings.cfg
+ENV DEBUG False
+ENV MSB_ADDR "127.0.0.1"
+ENV MSB_PORT 80
+
+# add application
+COPY maven/ /opt/ice
+COPY prod_settings.cfg /opt/ice/ice-server/heat_test/
+COPY run.sh /opt/ice/ice-server/heat_test/
+
+EXPOSE 5000
+
+# install requirements
+# Create the group and user to be used in this container
+RUN pip install -r /opt/ice/ice-server/requirements.txt &&\
+ pip install -r /opt/ice/validation-scripts/requirements.txt &&\
+ pip install dumb-init &&\
+ groupadd flaskgroup && useradd -m -g flaskgroup -s /bin/bash flask &&\
+ chown -R flask:flaskgroup /opt/ice &&\
+ chmod +x /opt/ice/ice-server/heat_test/*.sh
+
+USER flask
+WORKDIR /opt/ice/ice-server/heat_test
+# use dumb-init to translate SIGTERM to SIGINT
+# this is needed to gracefully stop flask (and unregister service properly)
+ENTRYPOINT ["dumb-init", "--rewrite", "15:2", "--"]
+CMD ["./run.sh"]