99d9544a64
Docker containers are supposed to be used for clean image building without side effects from local execution environment, though it may be useful to save some time and have a dirty image built quick. For those young and inpatient there is a way to do it now. Signed-off-by: Stanislav Bogatyrev <stanislav@nspcc.ru>
8 lines
121 B
Text
8 lines
121 B
Text
FROM alpine
|
|
RUN apk add --no-cache bash ca-certificates
|
|
|
|
WORKDIR /
|
|
|
|
COPY bin/neofs-cli /bin/neofs-cli
|
|
|
|
CMD ["neofs-cli"]
|