f80104f215
s3ql does not work very well in a dynamic environment like k8s. Also as it needs a ton of dependencies just to get it built makes it hard to maintain.
20 lines
612 B
Docker
20 lines
612 B
Docker
FROM debian:stretch
|
|
LABEL maintainers="Cyrill Troxler <cyrilltroxler@gmail.com>"
|
|
LABEL description="csi-s3 slim image"
|
|
|
|
# s3fs and some other dependencies
|
|
RUN apt-get update && \
|
|
apt-get install -y \
|
|
s3fs curl unzip && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
# install rclone
|
|
ARG RCLONE_VERSION=v1.47.0
|
|
RUN cd /tmp \
|
|
&& curl -O https://downloads.rclone.org/${RCLONE_VERSION}/rclone-${RCLONE_VERSION}-linux-amd64.zip \
|
|
&& unzip /tmp/rclone-${RCLONE_VERSION}-linux-amd64.zip \
|
|
&& mv /tmp/rclone-*-linux-amd64/rclone /usr/bin \
|
|
&& rm -r /tmp/rclone*
|
|
|
|
COPY ./_output/s3driver /s3driver
|
|
ENTRYPOINT ["/s3driver"]
|