Skip to content

Commit

Permalink
Merge pull request #100 from rootfs/base-image
Browse files Browse the repository at this point in the history
switch to centos base image
  • Loading branch information
rootfs authored Nov 20, 2018
2 parents 47a7b1f + b245957 commit 088cfc5
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions deploy/cephfs/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,14 +1,11 @@
FROM ubuntu:16.04
FROM centos:7
LABEL maintainers="Kubernetes Authors"
LABEL description="CephFS CSI Plugin"

ENV CEPH_VERSION "mimic"

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 attr --no-install-recommends && \
rm -rf /var/lib/apt/lists/*
RUN yum install -y centos-release-ceph && \
yum install -y kmod ceph-common ceph-fuse attr && \
yum clean all

COPY cephfsplugin /cephfsplugin

Expand Down

0 comments on commit 088cfc5

Please sign in to comment.