Merge "Remove unneeded deps"

This commit is contained in:
Jenkins 2016-02-23 11:31:04 +00:00 committed by Gerrit Code Review
commit 8528b55e21
2 changed files with 0 additions and 11 deletions

View File

@ -3,7 +3,6 @@ MAINTAINER {{ maintainer }}
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
# TODO(mandre) remove MariaDB-shared once Percona has fixed its packaging issue
RUN yum -y install \
gcc \
git \
@ -11,7 +10,6 @@ RUN yum -y install \
libxml2-devel \
libxslt-devel \
mariadb-devel \
MariaDB-shared \
openssl-devel \
python-devel \
openssh-clients \

View File

@ -17,15 +17,6 @@ RUN apt-get install -y --no-install-recommends \
{% endif %}
{% elif install_type == 'source' %}
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
# TODO(mandre) remove MariaDB-shared once Percona has fixed its packaging issue
# https://groups.google.com/forum/#!topic/percona-discussion/8-k_FS40Cdk
RUN yum -y install \
MariaDB-shared \
&& yum clean all
{% endif %}
ADD trove-base-archive /trove-base-source
RUN ln -s trove-base-source/* trove \