mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 00:10:20 +00:00
14 lines
305 B
Docker
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"]
|