k8s-csi-s3/test/Dockerfile

31 lines
671 B
Docker
Raw Normal View History

2018-07-14 08:48:22 +00:00
FROM golang:stretch
LABEL maintainers="Cyrill Troxler <cyrilltroxler@gmail.com>"
LABEL description="s3 fuse csi plugin"
2018-07-16 20:27:45 +00:00
2018-07-27 11:03:12 +00:00
RUN apt-get update && apt-get install -y \
s3fs \
build-essential \
autoconf \
libcurl4-openssl-dev \
libfuse-dev \
libexpat1-dev \
libssl-dev \
zlib1g-dev \
xfsprogs \
psmisc \
git && \
rm -rf /var/lib/apt/lists/*
2018-07-16 20:27:45 +00:00
2018-07-27 11:03:12 +00:00
RUN git clone https://github.com/archiecobbs/s3backer.git ./s3backer
2018-07-16 20:27:45 +00:00
2018-07-27 11:03:12 +00:00
WORKDIR "./s3backer"
RUN ["./autogen.sh"]
RUN ["./configure"]
RUN ["make"]
RUN ["make", "install"]
2018-07-14 08:48:22 +00:00
RUN go get -u github.com/minio/minio && go install github.com/minio/minio/cmd
CMD ["/go/src/github.com/ctrox/csi-s3-driver/test/test.sh"]