9 lines
142 B
Text
9 lines
142 B
Text
|
FROM alpine
|
||
|
RUN apk add --update --no-cache bash ca-certificates
|
||
|
|
||
|
WORKDIR /
|
||
|
|
||
|
COPY bin/neofs-rest-gw /bin/neofs-rest-gw
|
||
|
|
||
|
CMD ["neofs-rest-gw"]
|