Partially Implements: Blueprint standard-start Change-Id: I8a88572a4390824787c663014e6eae52dbb04648
18 lines
497 B
Docker
18 lines
497 B
Docker
FROM %%KOLLA_NAMESPACE%%/%%KOLLA_PREFIX%%base:%%KOLLA_TAG%%
|
|
MAINTAINER Kolla Project (https://launchpad.net/kolla)
|
|
|
|
RUN yum -y install \
|
|
openstack-dashboard \
|
|
httpd \
|
|
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
|
|
|
|
ADD ./start.sh /start.sh
|
|
COPY config-internal.sh config-external.sh /opt/kolla/
|
|
|
|
CMD ["/start.sh"]
|