frostfs-node/Dockerfile.dirty-storage
Stanislav Bogatyrev 99d9544a64 Add support for quick and dirty Docker image build
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>
2021-03-18 11:56:39 +03:00

8 lines
124 B
Docker

FROM alpine
RUN apk add --no-cache bash ca-certificates
WORKDIR /
COPY bin/neofs-node /bin/neofs-node
CMD ["neofs-node"]