Dmitrii Stepanov
731bf5d0ee
All checks were successful
ci/woodpecker/push/pre-commit Pipeline was successful
Signed-off-by: Dmitrii Stepanov <d.stepanov@yadro.com>
19 lines
390 B
Text
19 lines
390 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-node
|
|
|
|
# Executable image
|
|
FROM alpine AS frostfs-node
|
|
RUN apk add --no-cache bash
|
|
|
|
WORKDIR /
|
|
|
|
COPY --from=builder /src/bin/frostfs-node /bin/frostfs-node
|
|
COPY --from=builder /src/config/testnet/config.yml /config.yml
|
|
|
|
CMD ["frostfs-node", "--config", "/config.yml"]
|