From f373e81b20c7bcaaf093a86b9778ca858c7b892d Mon Sep 17 00:00:00 2001
From: akwasniewska <alicja.kwasniewska@intel.com>
Date: Wed, 12 Aug 2015 04:31:42 +0200
Subject: [PATCH] Add Dockerfile template for horizon

Change-Id: I2210a75c6803e41fa8cfd49a377e7948dcb64bc6
Partially-Implements: blueprint dockerfile-template
---
 docker_templates/horizon/Dockerfile.j2      | 50 +++++++++++++++++++++
 docker_templates/horizon/config-external.sh |  1 +
 docker_templates/horizon/start.sh           |  1 +
 3 files changed, 52 insertions(+)
 create mode 100644 docker_templates/horizon/Dockerfile.j2
 create mode 120000 docker_templates/horizon/config-external.sh
 create mode 120000 docker_templates/horizon/start.sh

diff --git a/docker_templates/horizon/Dockerfile.j2 b/docker_templates/horizon/Dockerfile.j2
new file mode 100644
index 0000000000..d1ee8592ee
--- /dev/null
+++ b/docker_templates/horizon/Dockerfile.j2
@@ -0,0 +1,50 @@
+FROM {{ namespace }}/{{ base_distro }}-{{ install_type }}-base:{{ tag }}
+MAINTAINER Kolla Project (https://launchpad.net.kolla)
+
+{% if install_type == 'binary' %}
+    {% if base_distro in ['centos', 'fedora', 'oraclelinux'] %}
+
+RUN yum -y install \
+    openstack-dashboard \
+    httpd \
+    mod_wsgi \
+    && yum clean all \
+    && chown -R apache:apache /usr/share/openstack-dashboard/static
+
+# The chown is required because of this packaging bug:
+# https://bugzilla.redhat.com/show_bug.cgi?id=1219006
+
+    {% elif base_distro in ['ubuntu', 'debian'] %}
+
+RUN echo '{{ install_type }} not yet available for {{ base_distro }}' \
+    && /bin/false
+
+    {% endif %}
+
+{% elif install_type == 'source' %}
+
+ADD ./horizon.tar /
+RUN ln -s /horizon-* /horizon
+
+RUN yum install -y \
+    httpd \
+    mod_wsgi \
+    && yum clean all
+
+RUN cd /horizon \
+    && useradd --user-group horizon \
+    && pip install -r requirements.txt \
+    && pip install /horizon \
+    && mkdir -p /etc/openstack-dashboard /var/log/horizon /usr/share/openstack-dashboard/static \
+    && chown -R apache:apache /usr/share/openstack-dashboard/static \
+    && rm -rf /root/.cache
+
+# The chown is required because of this packaging bug:
+# https://bugzilla.redhat.com/show_bug.cgi?id=1219006
+
+{% endif %}
+
+COPY config-external.sh /opt/kolla/
+COPY start.sh /
+
+CMD ["/start.sh"]
diff --git a/docker_templates/horizon/config-external.sh b/docker_templates/horizon/config-external.sh
new file mode 120000
index 0000000000..32f0838d66
--- /dev/null
+++ b/docker_templates/horizon/config-external.sh
@@ -0,0 +1 @@
+../../docker/common/horizon/config-external.sh
\ No newline at end of file
diff --git a/docker_templates/horizon/start.sh b/docker_templates/horizon/start.sh
new file mode 120000
index 0000000000..16347cc9b7
--- /dev/null
+++ b/docker_templates/horizon/start.sh
@@ -0,0 +1 @@
+../../docker/common/horizon/start.sh
\ No newline at end of file