ceph-csi/Dockerfile
Serguei Bezverkhi 1ff1f8be30 code update
2018-03-08 13:22:40 -05:00

13 lines
312 B
Docker

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
COPY _output/rbdplugin /rbdplugin
RUN chmod +x /rbdplugin
ENTRYPOINT ["/rbdplugin"]