forked from TrueCloudLab/frostfs-s3-gw
0bd7d4da2f
Signed-off-by: Denis Kirillov <denis@nspcc.ru>
21 lines
401 B
Docker
21 lines
401 B
Docker
FROM golang:1.19 as builder
|
|
|
|
ARG BUILD=now
|
|
ARG REPO=github.com/nspcc-dev/neofs-s3-gw
|
|
ARG VERSION=dev
|
|
|
|
WORKDIR /src
|
|
COPY . /src
|
|
|
|
RUN make
|
|
|
|
# Executable image
|
|
FROM alpine AS neofs-s3-gw
|
|
RUN apk add --no-cache bash ca-certificates
|
|
|
|
WORKDIR /
|
|
|
|
COPY --from=builder /src/bin/neofs-s3-gw /bin/neofs-s3-gw
|
|
COPY --from=builder /src/bin/neofs-s3-authmate /bin/neofs-s3-authmate
|
|
|
|
ENTRYPOINT ["/bin/neofs-s3-gw"]
|