Skip to content
Snippets Groups Projects
Commit bface0f6 authored by Jenkins's avatar Jenkins Committed by Gerrit Code Review
Browse files

Merge "Add build from source for Horizon"

parents cac10122 7a3025ec
No related branches found
No related tags found
No related merge requests found
# Build info specific to this image. All values can be overridden in .buildconf
COMPONENT=horizon
SOURCE_INSTALL_AVAILABLE=1
# Used for git install method
: ${CLONE_FROM:=https://github.com/openstack/horizon}
# Used for curl install method
: ${TARBALL_URI:=http://tarballs.openstack.org/horizon/horizon-master.tar.gz}
FROM %%KOLLA_NAMESPACE%%/%%KOLLA_PREFIX%%base:%%KOLLA_TAG%%
MAINTAINER Kolla Project (https://launchpad.net/kolla)
ADD ./horizon.tar /
RUN ln -s /horizon-* /horizon
RUN yum install -y \
httpd \
mod_wsgi \
&& yum clean all
# The chown is required because of this packaging bug:
# https://bugzilla.redhat.com/show_bug.cgi?id=1219006
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
COPY config-internal.sh config-external.sh /opt/kolla/
COPY ./start.sh /start.sh
COPY config-internal.sh config-external.sh /opt/kolla/
CMD ["/start.sh"]
../../../../tools/build-docker-image
\ No newline at end of file
../../../common/horizon/config-external.sh
\ No newline at end of file
../../../common/horizon/config-internal.sh
\ No newline at end of file
../../../common/horizon/horizon-bug-1469284.patch
\ No newline at end of file
../../../common/horizon/start.sh
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment