Skip to content
Snippets Groups Projects
Commit 76c88bbd authored by SamYaple's avatar SamYaple Committed by Sam Yaple
Browse files

Fix swift build issue

Swift updates and new deps are needed, here is one

Closes-Bug: #1538377
Change-Id: Ibb890c73e462113c5aa29ab12637a9115bb51240
parent 2361fddc
No related branches found
No related tags found
No related merge requests found
...@@ -9,6 +9,19 @@ RUN yum -y install openstack-swift \ ...@@ -9,6 +9,19 @@ RUN yum -y install openstack-swift \
{% endif %} {% endif %}
{% elif install_type == 'source' %} {% elif install_type == 'source' %}
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
RUN yum -y install \
liberasurecode-devel \
&& yum clean all
{% elif base_distro in ['ubuntu'] %}
RUN apt-get install -y --no-install-recommends \
liberasurecode-dev \
&& apt-get clean
{% endif %}
ADD swift-base-archive /swift-base-source ADD swift-base-archive /swift-base-source
RUN ln -s swift-base-source/* swift \ RUN ln -s swift-base-source/* swift \
......
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