k8s-csi-s3/cmd/s3driver/Dockerfile

20 lines
575 B
Docker
Raw Normal View History

FROM debian:stretch
2018-07-14 08:48:22 +00:00
LABEL maintainers="Cyrill Troxler <cyrilltroxler@gmail.com>"
LABEL description="csi-s3 slim image"
RUN apt-get update && \
apt-get install -y \
s3fs wget unzip && \
2018-07-27 11:03:12 +00:00
rm -rf /var/lib/apt/lists/*
2019-03-07 19:27:02 +00:00
# install rclone
ARG RCLONE_VERSION=v1.46
RUN cd /tmp \
&& wget -q 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*
2019-03-07 19:27:02 +00:00
2018-07-14 08:48:22 +00:00
COPY ./_output/s3driver /s3driver
ENTRYPOINT ["/s3driver"]