ceph-csi/deploy/cephfs/docker/Dockerfile
2018-03-05 13:21:30 +01:00

14 lines
305 B
Docker

FROM ubuntu:16.04
LABEL maintainers="Kubernetes Authors"
LABEL description="CephFS CSI Plugin"
ENV CEPH_VERSION "luminous"
RUN apt-get update && \
apt-get install -y ceph-fuse attr && \
apt-get autoremove
COPY cephfsplugin /cephfsplugin
RUN chmod +x /cephfsplugin
ENTRYPOINT ["/cephfsplugin"]