ceph-csi/deploy/cephcsi/image/Dockerfile
Humble Chirammal 6950ad468f Fix the vulnarabilities in the image.
Signed-off-by: Humble Chirammal <hchiramm@redhat.com>
2019-08-14 17:37:33 +05:30

14 lines
361 B
Docker

FROM ceph/ceph:v14.2
LABEL maintainers="Ceph-CSI Authors"
LABEL description="Ceph-CSI Plugin"
# 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
RUN chmod +x $CSIBIN
ENTRYPOINT ["/usr/local/bin/cephcsi"]