ceph-csi/Dockerfile

13 lines
312 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"
ENV CEPH_VERSION "luminous"
RUN yum install -y centos-release-ceph && \
yum install -y ceph-common e2fsprogs && \
yum clean all
2018-03-06 22:33:57 +00:00
COPY _output/rbdplugin /rbdplugin
2018-01-09 18:59:50 +00:00
RUN chmod +x /rbdplugin
ENTRYPOINT ["/rbdplugin"]