mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 08:20:23 +00:00
8955eb03bc
Signed-off-by: Huamin Chen <hchen@redhat.com>
13 lines
309 B
Docker
13 lines
309 B
Docker
FROM centos:7
|
|
LABEL maintainers="Kubernetes Authors"
|
|
LABEL description="RBD CSI Plugin"
|
|
|
|
ENV CEPH_VERSION "mimic"
|
|
RUN yum install -y centos-release-ceph && \
|
|
yum install -y ceph-common e2fsprogs rbd-nbd && \
|
|
yum clean all
|
|
|
|
COPY rbdplugin /rbdplugin
|
|
RUN chmod +x /rbdplugin
|
|
ENTRYPOINT ["/rbdplugin"]
|