2022-08-30 12:33:17 +00:00
|
|
|
FROM golang:1.19 as builder
|
2020-07-14 11:33:52 +00:00
|
|
|
|
2022-07-05 11:19:09 +00:00
|
|
|
ARG BUILD=now
|
2021-05-24 11:24:01 +00:00
|
|
|
ARG REPO=github.com/nspcc-dev/neofs-s3-gw
|
2020-07-03 15:08:57 +00:00
|
|
|
ARG VERSION=dev
|
2020-07-03 12:03:06 +00:00
|
|
|
|
2022-07-05 11:19:09 +00:00
|
|
|
WORKDIR /src
|
|
|
|
COPY . /src
|
|
|
|
|
|
|
|
RUN make
|
2020-07-03 12:03:06 +00:00
|
|
|
|
2020-07-03 15:08:57 +00:00
|
|
|
# Executable image
|
2022-07-05 11:19:09 +00:00
|
|
|
FROM alpine AS neofs-s3-gw
|
|
|
|
RUN apk add --no-cache bash ca-certificates
|
2020-07-03 12:03:06 +00:00
|
|
|
|
2020-07-03 15:08:57 +00:00
|
|
|
WORKDIR /
|
2020-07-03 12:03:06 +00:00
|
|
|
|
2021-05-13 19:08:33 +00:00
|
|
|
COPY --from=builder /src/bin/neofs-s3-gw /bin/neofs-s3-gw
|
2022-06-28 18:12:39 +00:00
|
|
|
COPY --from=builder /src/bin/neofs-s3-authmate /bin/neofs-s3-authmate
|
2020-07-03 12:03:06 +00:00
|
|
|
|
2021-05-13 19:08:33 +00:00
|
|
|
ENTRYPOINT ["/bin/neofs-s3-gw"]
|