mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-09 16:00:22 +00:00
cephfs/Dockerfile: use ceph's package repositories instead
This commit is contained in:
parent
70f954ddc0
commit
e45f87632e
@ -4,8 +4,10 @@ LABEL description="CephFS CSI Plugin"
|
||||
|
||||
ENV CEPH_VERSION "luminous"
|
||||
|
||||
RUN apt-get update && \
|
||||
apt-get install -y ceph-fuse && \
|
||||
RUN apt-get update && apt-get install -y wget && \
|
||||
wget -q -O- 'https://download.ceph.com/keys/release.asc' | apt-key add - && \
|
||||
echo "deb http://download.ceph.com/debian-$CEPH_VERSION/ xenial main" | tee /etc/apt/sources.list.d/ceph-$CEPH_VERSION.list && \
|
||||
apt-get update && apt-get install -y kmod ceph-common ceph-fuse --no-install-recommends && \
|
||||
rm -rf /var/lib/apt/lists/*
|
||||
|
||||
COPY cephfsplugin /cephfsplugin
|
||||
|
Loading…
Reference in New Issue
Block a user