forked from TrueCloudLab/frostfs-node
Stanislav Bogatyrev
cc71e6902a
- logo update - docker image build fixes - README and other texts updates Signed-off-by: Stanislav Bogatyrev <s.bogatyrev@yadro.com>
19 lines
366 B
Text
19 lines
366 B
Text
FROM golang:1.17 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"]
|