2020-07-03 18:08:57 +03:00
|
|
|
FROM golang:1 as builder
|
2020-07-03 15:03:06 +03:00
|
|
|
|
2020-07-03 18:08:57 +03:00
|
|
|
WORKDIR /src
|
2020-07-03 15:03:06 +03:00
|
|
|
|
2020-07-14 14:33:52 +03:00
|
|
|
RUN set -x \
|
|
|
|
&& apt update \
|
2021-05-13 22:08:33 +03:00
|
|
|
&& apt install -y make
|
2020-07-14 14:33:52 +03:00
|
|
|
|
|
|
|
COPY . /src
|
|
|
|
|
2021-05-24 14:24:01 +03:00
|
|
|
ARG REPO=github.com/nspcc-dev/neofs-s3-gw
|
2020-07-03 18:08:57 +03:00
|
|
|
ARG VERSION=dev
|
2020-07-03 15:03:06 +03:00
|
|
|
|
2021-05-24 14:24:01 +03:00
|
|
|
RUN set -x && make -o dep # run make without dep dependency
|
2020-07-03 15:03:06 +03:00
|
|
|
|
2020-07-03 18:08:57 +03:00
|
|
|
# Executable image
|
2020-07-14 14:33:52 +03:00
|
|
|
FROM scratch
|
2020-07-03 15:03:06 +03:00
|
|
|
|
2020-07-03 18:08:57 +03:00
|
|
|
WORKDIR /
|
2020-07-03 15:03:06 +03:00
|
|
|
|
2021-05-13 22:08:33 +03:00
|
|
|
COPY --from=builder /src/bin/neofs-s3-gw /bin/neofs-s3-gw
|
2021-05-24 14:24:01 +03:00
|
|
|
COPY --from=builder /src/bin/neofs-authmate /bin/neofs-authmate
|
2020-07-03 18:08:57 +03:00
|
|
|
COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
|
2020-07-03 15:03:06 +03:00
|
|
|
|
2021-05-13 22:08:33 +03:00
|
|
|
ENTRYPOINT ["/bin/neofs-s3-gw"]
|