forked from TrueCloudLab/frostfs-node
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
124 B
Text
8 lines
124 B
Text
FROM alpine
|
|
RUN apk add --no-cache bash ca-certificates
|
|
|
|
WORKDIR /
|
|
|
|
COPY bin/neofs-node /bin/neofs-node
|
|
|
|
CMD ["neofs-node"]
|