mirror of
https://git.mirrors.martin98.com/https://github.com/ceph/ceph-csi.git
synced 2025-10-22 09:41:08 +08:00
14 lines
306 B
Docker
14 lines
306 B
Docker
# Based on centos
|
|
FROM centos:7.4.1708
|
|
LABEL maintainers="Kubernetes Authors"
|
|
LABEL description="Cinder CSI Plugin"
|
|
|
|
# Copy cinderplugin from build directory
|
|
COPY cinderplugin /cinderplugin
|
|
|
|
# Install e4fsprogs for format
|
|
RUN yum -y install e4fsprogs
|
|
|
|
# Define default command
|
|
ENTRYPOINT ["/cinderplugin"]
|