ceph-csi/deploy/cephfs/docker/Dockerfile

16 lines
359 B
Docker
Raw Normal View History

2018-11-20 14:45:15 +00:00
FROM centos:7
2018-03-05 11:59:47 +00:00
LABEL maintainers="Kubernetes Authors"
LABEL description="CephFS CSI Plugin"
2018-07-04 04:20:56 +00:00
ENV CEPH_VERSION "mimic"
2018-11-20 14:45:15 +00:00
RUN yum install -y centos-release-ceph && \
yum install -y kmod ceph-common ceph-fuse attr && \
yum clean all
2018-03-05 11:59:47 +00:00
COPY cephfsplugin /cephfsplugin
RUN chmod +x /cephfsplugin && \
mkdir -p /var/log/ceph
2018-03-05 11:59:47 +00:00
ENTRYPOINT ["/cephfsplugin"]