1
0
mirror of https://github.com/ceph/ceph-csi.git synced 2024-12-22 13:00:19 +00:00
ceph-csi/deploy/rbd/docker/Dockerfile

13 lines
318 B
Docker
Raw Normal View History

2018-01-09 18:59:50 +00:00
FROM centos:7
LABEL maintainers="Kubernetes Authors"
LABEL description="RBD CSI Plugin"
2018-07-04 04:20:56 +00:00
ENV CEPH_VERSION "mimic"
2018-01-09 18:59:50 +00:00
RUN yum install -y centos-release-ceph && \
yum install -y ceph-common e2fsprogs xfsprogs rbd-nbd && \
2018-01-09 18:59:50 +00:00
yum clean all
COPY rbdplugin /rbdplugin
RUN chmod +x /rbdplugin
ENTRYPOINT ["/rbdplugin"]