mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-09 16:00:22 +00:00
2d560ba087
currently, we have 3 docker files(cephcsi,rbd,cephfs) in the ceph-csi repo.
[commit ](85e121ebfe
)
added by John to build a single image which can act as rbd or
cephfs based on the input configuration.
This PR updates the makefile and kubernetes templates to use
the unified image and also its deletes the other two dockerfiles.
Signed-off-by: Madhu Rajanna <madhupr007@gmail.com>
12 lines
212 B
Docker
12 lines
212 B
Docker
FROM ceph/ceph:v14.2
|
|
LABEL maintainers="Ceph-CSI Authors"
|
|
LABEL description="Ceph-CSI Plugin"
|
|
|
|
ENV CSIBIN=/usr/local/bin/cephcsi
|
|
|
|
COPY cephcsi $CSIBIN
|
|
|
|
RUN chmod +x $CSIBIN
|
|
|
|
ENTRYPOINT ["/usr/local/bin/cephcsi"]
|