Fix horizon version with horizon tempest
Change-Id: Ibca659c4a11bacd28570c94b6dc3e8b05a0112fe
This commit is contained in:
parent
c4a743073e
commit
b81ce68e23
@ -15,18 +15,22 @@
|
|||||||
|
|
||||||
FROM docker.io/opendevorg/python-builder as builder
|
FROM docker.io/opendevorg/python-builder as builder
|
||||||
COPY bindep.txt /tmp/src/bindep.txt
|
COPY bindep.txt /tmp/src/bindep.txt
|
||||||
RUN assemble horizon==18.3.1 \
|
RUN apt update && apt -y install git
|
||||||
python-memcached \
|
ADD https://releases.openstack.org/constraints/upper/ussuri /tmp/src/upper-constraints.txt
|
||||||
heat-dashboard==2.0.0 \
|
RUN assemble git+https://opendev.org/openstack/horizon@stable/ussuri \
|
||||||
designate-dashboard==9.0.0 \
|
git+https://opendev.org/openstack/heat-dashboard@stable/ussuri \
|
||||||
neutron-vpnaas-dashboard==1.6.0 \
|
git+https://opendev.org/openstack/designate-dashboard@stable/ussuri \
|
||||||
octavia-dashboard==4.0.0 \
|
git+https://opendev.org/openstack/neutron-vpnaas-dashboard@stable/ussuri \
|
||||||
sahara-dashboard==11.0.0 \
|
git+https://opendev.org/openstack/octavia-dashboard@stable/ussuri \
|
||||||
magnum-ui==6.0.0
|
git+https://opendev.org/openstack/sahara-dashboard@stable/ussuri \
|
||||||
|
git+https://opendev.org/openstack/magnum-ui@stable/ussuri \
|
||||||
|
python-memcached
|
||||||
|
|
||||||
FROM docker.io/opendevorg/uwsgi-base
|
FROM docker.io/opendevorg/uwsgi-base
|
||||||
COPY --from=builder /output/ /output
|
COPY --from=builder /output/ /output
|
||||||
RUN /output/install-from-bindep
|
RUN apt update && apt -y install git && \
|
||||||
|
/output/install-from-bindep && \
|
||||||
|
apt -y purge git && apt clean all
|
||||||
WORKDIR /usr/local/lib/python3.7/site-packages/openstack_dashboard
|
WORKDIR /usr/local/lib/python3.7/site-packages/openstack_dashboard
|
||||||
RUN ln -s /etc/horizon/local_settings.py local/local_settings.py && \
|
RUN ln -s /etc/horizon/local_settings.py local/local_settings.py && \
|
||||||
cp ../designatedashboard/enabled/*.py enabled/ && \
|
cp ../designatedashboard/enabled/*.py enabled/ && \
|
||||||
|
Loading…
Reference in New Issue
Block a user