forked from TrueCloudLab/frostfs-node
9 lines
124 B
Text
9 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"]
|