mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 00:10:20 +00:00
c629c3bf52
As we have the octopus as the latest release base image,this PR updates the base image in Dockerfile Signed-off-by: Madhu Rajanna <madhupr007@gmail.com>
16 lines
515 B
Docker
16 lines
515 B
Docker
FROM ceph/ceph:v15
|
|
LABEL maintainers="Ceph-CSI Authors"
|
|
LABEL description="Ceph-CSI Plugin"
|
|
|
|
# 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.
|
|
|
|
# Removing ceph-iscsi repo to workaround the repo issue while upgrading
|
|
#RUN rm -f /etc/yum.repos.d/ceph-iscsi.repo && yum -y update && yum clean all
|
|
ENV CSIBIN=/usr/local/bin/cephcsi
|
|
|
|
COPY cephcsi $CSIBIN
|
|
|
|
ENTRYPOINT ["/usr/local/bin/cephcsi"]
|