19 lines
609 B
Docker
19 lines
609 B
Docker
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 alpine:3.16
|
|
LABEL maintainers="Vitaliy Filippov <vitalif@yourcmc.ru>"
|
|
LABEL description="csi-s3 slim image"
|
|
|
|
RUN apk add --no-cache -X http://dl-cdn.alpinelinux.org/alpine/edge/testing s3fs-fuse rclone
|
|
|
|
ADD https://github.com/yandex-cloud/geesefs/releases/latest/download/geesefs-linux-amd64 /usr/bin/geesefs
|
|
RUN chmod 755 /usr/bin/geesefs
|
|
|
|
COPY --from=gobuild /build/s3driver /s3driver
|
|
ENTRYPOINT ["/s3driver"]
|