2024-07-23 09:15:20 +00:00
|
|
|
FROM golang:1.22 AS builder
|
2020-08-04 14:46:12 +00:00
|
|
|
ARG BUILD=now
|
|
|
|
ARG VERSION=dev
|
|
|
|
ARG REPO=repository
|
|
|
|
WORKDIR /src
|
|
|
|
COPY . /src
|
|
|
|
|
2023-01-09 07:04:58 +00:00
|
|
|
RUN make bin/frostfs-cli
|
2020-08-04 14:46:12 +00:00
|
|
|
|
|
|
|
# Executable image
|
2023-01-09 07:04:58 +00:00
|
|
|
FROM alpine AS frostfs-cli
|
2021-01-23 17:08:55 +00:00
|
|
|
RUN apk add --no-cache bash
|
2020-08-04 14:46:12 +00:00
|
|
|
|
|
|
|
WORKDIR /
|
|
|
|
|
|
|
|
COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
|
2023-01-09 07:04:58 +00:00
|
|
|
COPY --from=builder /src/bin/frostfs-cli /bin/frostfs-cli
|
2020-08-04 14:46:12 +00:00
|
|
|
|
2023-01-09 07:04:58 +00:00
|
|
|
CMD ["frostfs-cli"]
|