Move Dockerfile to /
This commit is contained in:
parent
dc1eb30b0d
commit
1e535a36f4
2 changed files with 4 additions and 2 deletions
cmd/s3driver
|
@ -1,19 +0,0 @@
|
|||
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"]
|
Loading…
Add table
Add a link
Reference in a new issue