2019-03-20 19:15:51 +00:00
|
|
|
FROM ceph/ceph:v14.2
|
|
|
|
LABEL maintainers="Ceph-CSI Authors"
|
|
|
|
LABEL description="Ceph-CSI Plugin"
|
|
|
|
|
2019-11-07 09:55:12 +00:00
|
|
|
# To support cross building, do NOT RUN native binaries here.
|
|
|
|
# If we have to run native binaries, qemu-user-static must be installed on
|
|
|
|
# build host and mounted to container.
|
|
|
|
|
2019-08-14 07:53:02 +00:00
|
|
|
# Removing ceph-iscsi repo to workaround the repo issue while upgrading
|
2019-09-04 10:04:30 +00:00
|
|
|
#RUN rm -f /etc/yum.repos.d/ceph-iscsi.repo && yum -y update && yum clean all
|
2019-03-20 19:15:51 +00:00
|
|
|
ENV CSIBIN=/usr/local/bin/cephcsi
|
|
|
|
|
|
|
|
COPY cephcsi $CSIBIN
|
|
|
|
|
|
|
|
ENTRYPOINT ["/usr/local/bin/cephcsi"]
|