k8s-csi-s3/cmd/s3driver/Dockerfile

30 lines
826 B
Docker
Raw Normal View History

FROM golang:1.16-alpine as gobuild
WORKDIR /build
ADD . /build
RUN go get -d -v ./...
RUN CGO_ENABLED=0 GOOS=linux go build -a -ldflags '-extldflags "-static"' -o ./s3driver ./cmd/s3driver
FROM debian:buster-slim
2021-07-19 12:17:31 +00:00
LABEL maintainers="Vitaliy Filippov <vitalif@yourcmc.ru>"
LABEL description="csi-s3 slim image"
ADD geesefs /usr/bin/
2021-07-19 12:17:31 +00:00
RUN apt-get update && \
2021-07-19 12:17:31 +00:00
apt-get install -y ca-certificates && \
2018-07-27 11:03:12 +00:00
rm -rf /var/lib/apt/lists/*
2021-07-19 12:17:31 +00:00
# s3fs curl unzip
## install rclone
#ARG RCLONE_VERSION=v1.54.1
#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*
2019-03-07 19:27:02 +00:00
COPY --from=gobuild /build/s3driver /s3driver
2018-07-14 08:48:22 +00:00
ENTRYPOINT ["/s3driver"]