Dmitrii Stepanov
731bf5d0ee
All checks were successful
ci/woodpecker/push/pre-commit Pipeline was successful
Signed-off-by: Dmitrii Stepanov <d.stepanov@yadro.com>
18 lines
290 B
Text
18 lines
290 B
Text
FROM golang:1.20 as builder
|
|
ARG BUILD=now
|
|
ARG VERSION=dev
|
|
ARG REPO=repository
|
|
WORKDIR /src
|
|
COPY . /src
|
|
|
|
RUN make bin/frostfs-ir
|
|
|
|
# Executable image
|
|
FROM alpine AS frostfs-ir
|
|
RUN apk add --no-cache bash
|
|
|
|
WORKDIR /
|
|
|
|
COPY --from=builder /src/bin/frostfs-ir /bin/frostfs-ir
|
|
|
|
CMD ["frostfs-ir"]
|