![Sam Yaple](/assets/img/avatar_default.png)
Change-Id: Iafde0b26008ad93f9a956192da73d59ccb593104 Partially-implements: blueprint remove-config-internal
18 lines
463 B
Docker
18 lines
463 B
Docker
FROM %%KOLLA_NAMESPACE%%/%%KOLLA_PREFIX%%base:%%KOLLA_TAG%%
|
|
MAINTAINER Kolla Project (https://launchpad.net/kolla)
|
|
|
|
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
|
|
|
|
COPY config-external.sh /opt/kolla/
|
|
COPY start.sh /
|
|
|
|
CMD ["/start.sh"]
|