forked from TrueCloudLab/frostfs-http-gw
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-http-gw /bin/neofs-http-gw
|
||
|
|
||
|
CMD ["neofs-http-gw"]
|