2024-07-23 09:15:20 +00:00
|
|
|
FROM golang:1.22 AS builder
|
2020-07-24 13:54:03 +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-ir
|
2020-07-24 13:54:03 +00:00
|
|
|
|
|
|
|
# Executable image
|
2023-01-09 07:04:58 +00:00
|
|
|
FROM alpine AS frostfs-ir
|
2021-01-23 17:08:55 +00:00
|
|
|
RUN apk add --no-cache bash
|
2020-07-24 13:54:03 +00:00
|
|
|
|
|
|
|
WORKDIR /
|
|
|
|
|
2023-01-09 07:04:58 +00:00
|
|
|
COPY --from=builder /src/bin/frostfs-ir /bin/frostfs-ir
|
2020-07-24 13:54:03 +00:00
|
|
|
|
2023-01-09 07:04:58 +00:00
|
|
|
CMD ["frostfs-ir"]
|