aboutsummaryrefslogtreecommitdiffstats
path: root/moon_dashboard/Dockerfile
diff options
context:
space:
mode:
authorThomas Duval <thomas.duval@orange.com>2020-06-03 10:06:52 +0200
committerThomas Duval <thomas.duval@orange.com>2020-06-03 10:06:52 +0200
commit7bb53c64da2dcf88894bfd31503accdd81498f3d (patch)
tree4310e12366818af27947b5e2c80cb162da93a4b5 /moon_dashboard/Dockerfile
parentcbea4e360e9bfaa9698cf7c61c83c96a1ba89b8c (diff)
Update to new version 5.4HEADstable/jermamaster
Signed-off-by: Thomas Duval <thomas.duval@orange.com> Change-Id: Idcd868133d75928a1ffd74d749ce98503e0555ea
Diffstat (limited to 'moon_dashboard/Dockerfile')
-rw-r--r--moon_dashboard/Dockerfile38
1 files changed, 0 insertions, 38 deletions
diff --git a/moon_dashboard/Dockerfile b/moon_dashboard/Dockerfile
deleted file mode 100644
index 790a2b21..00000000
--- a/moon_dashboard/Dockerfile
+++ /dev/null
@@ -1,38 +0,0 @@
-FROM python:3.5
-
-LABEL Name=Dashboard
-LABEL Description="User interface for the Moon platform"
-LABEL Maintainer="Thomas Duval"
-LABEL Url="https://wiki.opnfv.org/display/moon/Moon+Project+Proposal"
-
-ENV MANAGER_HOST="127.0.0.1"
-ENV MANAGER_PORT=30001
-ENV KEYSTONE_HOST="127.0.0.1"
-ENV KEYSTONE_PORT=5000
-ENV OPENSTACK_HOST="127.0.0.1"
-ENV OPENSTACK_KEYSTONE_URL="http://${KEYSTONE_HOST}:${KEYSTONE_PORT}/identity/v3"
-ENV SERVER_IP_ADDR="0.0.0.0"
-
-USER root
-
-WORKDIR /root/
-ADD . /root
-
-RUN [ -d horizon ] || git clone https://git.openstack.org/openstack/horizon
-
-WORKDIR /root/horizon
-
-# RUN pip install --no-cache-dir pip
-RUN pip install --no-cache-dir -c http://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt .
-
-RUN cp openstack_dashboard/local/local_settings.py.example openstack_dashboard/local/local_settings.py
-RUN pip install --no-cache-dir tox
-
-WORKDIR /root/
-
-RUN cp -v moon/enabled/_32000_moon.py horizon/openstack_dashboard/local/enabled/_32000_moon.py
-RUN cp -rv moon/ horizon/openstack_dashboard/dashboards/
-
-EXPOSE 8000
-
-CMD ["/bin/sh", "/root/run.sh"] \ No newline at end of file