FROM golang:1.22-alpine AS basebuilder RUN apk add --update make bash ca-certificates FROM basebuilder AS builder ENV GOGC=off ENV CGO_ENABLED=0 ARG BUILD=now ARG VERSION=dev ARG REPO=repository WORKDIR /src COPY . /src RUN make # Executable image FROM scratch WORKDIR / COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ COPY --from=builder /src/bin/frostfs-http-gw /bin/frostfs-http-gw ENTRYPOINT ["/bin/frostfs-http-gw"]