mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 00:10:20 +00:00
16 lines
359 B
Docker
16 lines
359 B
Docker
FROM centos:7
|
|
LABEL maintainers="Kubernetes Authors"
|
|
LABEL description="CephFS CSI Plugin"
|
|
|
|
ENV CEPH_VERSION "mimic"
|
|
RUN yum install -y centos-release-ceph && \
|
|
yum install -y kmod ceph-common ceph-fuse attr && \
|
|
yum clean all
|
|
|
|
COPY cephfsplugin /cephfsplugin
|
|
|
|
RUN chmod +x /cephfsplugin && \
|
|
mkdir -p /var/log/ceph
|
|
|
|
ENTRYPOINT ["/cephfsplugin"]
|