a24aefe83d
Fix in stable/mitaka Closes-Bug: #1570529 Change-Id: I898837f25cf1c23aaf16055e6d4a0ed086c1ae9f
32 lines
708 B
Django/Jinja
32 lines
708 B
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}base:{{ tag }}
|
|
MAINTAINER {{ maintainer }}
|
|
|
|
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
|
|
|
|
RUN yum -y install \
|
|
ceph \
|
|
ceph-radosgw \
|
|
parted \
|
|
hdparm \
|
|
btrfs-progs \
|
|
&& yum clean all
|
|
|
|
{% elif base_distro in ['ubuntu', 'debian'] %}
|
|
|
|
RUN apt-get install -y --no-install-recommends \
|
|
ceph \
|
|
radosgw \
|
|
parted \
|
|
hdparm \
|
|
btrfs-tools \
|
|
&& apt-get clean
|
|
|
|
{% endif %}
|
|
|
|
COPY extend_start.sh /usr/local/bin/kolla_extend_start
|
|
RUN chmod 755 /usr/local/bin/kolla_extend_start
|
|
|
|
RUN useradd --user-group ceph \
|
|
&& mkdir -p /home/ceph \
|
|
&& chown -R ceph: /home/ceph
|