ceph-csi/deploy/cephfs/docker/Dockerfile

14 lines
305 B
Docker
Raw Normal View History

2018-03-05 11:59:47 +00:00
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"]