ded2967ea6
Percona has fixed their packaging issue and now MySQL-python installs cleanly without the need of MariaDB-shared package. TrivialFix Change-Id: I42672c269185352ab4999683bd0ad7c5f23de3bb
61 lines
1.6 KiB
Django/Jinja
61 lines
1.6 KiB
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}base:{{ tag }}
|
|
MAINTAINER {{ maintainer }}
|
|
|
|
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
|
|
|
|
RUN yum -y install \
|
|
gcc \
|
|
git \
|
|
libffi-devel \
|
|
libxml2-devel \
|
|
libxslt-devel \
|
|
mariadb-devel \
|
|
openssl-devel \
|
|
python-devel \
|
|
openssh-clients \
|
|
&& yum clean all \
|
|
&& rpm -e --nodeps pytz
|
|
|
|
{% elif base_distro in ['ubuntu', 'debian'] %}
|
|
|
|
RUN apt-get -y --no-install-recommends install \
|
|
build-essential \
|
|
ca-certificates \
|
|
git \
|
|
libffi-dev \
|
|
libmariadbclient-dev \
|
|
libssl-dev \
|
|
libxslt1-dev \
|
|
python-dev \
|
|
&& apt-get clean
|
|
|
|
{% endif %}
|
|
|
|
RUN curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py \
|
|
&& python get-pip.py \
|
|
&& rm get-pip.py \
|
|
&& pip --no-cache-dir install --upgrade wheel \
|
|
&& pip --no-cache-dir install \
|
|
MySQL-python \
|
|
os-client-config==1.13.1 \
|
|
pyudev \
|
|
shade==1.3.0
|
|
|
|
RUN git clone --depth 1 -b v2.0.0-0.7.rc2 https://github.com/ansible/ansible.git \
|
|
&& cd ansible \
|
|
&& git submodule update --init --recursive \
|
|
&& pip --no-cache-dir install .
|
|
|
|
RUN mkdir -p /etc/ansible /usr/share/ansible /home/ansible \
|
|
&& echo 'localhost ansible_connection=local' > /etc/ansible/hosts \
|
|
&& useradd --user-group ansible --groups kolla
|
|
|
|
COPY find_disks.py kolla_keystone_service.py kolla_keystone_user.py kolla_sanity.py kolla_zookeeper.py /usr/share/ansible/
|
|
COPY ansible.cfg /home/ansible/.ansible.cfg
|
|
|
|
CMD ["/bin/sleep", "infinity"]
|
|
|
|
{{ include_footer }}
|
|
|
|
USER ansible
|