forked from TrueCloudLab/frostfs-node
Evgenii Stratonikov
43fdb1da45
This reverts commit 9adcb253be
.
Signed-off-by: Evgenii Stratonikov <e.stratonikov@yadro.com>
19 lines
366 B
Text
19 lines
366 B
Text
FROM golang:1.22 as builder
|
|
ARG BUILD=now
|
|
ARG VERSION=dev
|
|
ARG REPO=repository
|
|
WORKDIR /src
|
|
COPY . /src
|
|
|
|
RUN make bin/frostfs-adm
|
|
|
|
# Executable image
|
|
FROM alpine AS frostfs-adm
|
|
RUN apk add --no-cache bash
|
|
|
|
WORKDIR /
|
|
|
|
COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
|
|
COPY --from=builder /src/bin/frostfs-adm /bin/frostfs-adm
|
|
|
|
CMD ["frostfs-adm"]
|