8 lines
148 B
Text
8 lines
148 B
Text
FROM alpine
|
|
RUN apk add --update --no-cache bash ca-certificates
|
|
|
|
WORKDIR /
|
|
|
|
COPY bin/frostfs-http-gw /bin/frostfs-http-gw
|
|
|
|
CMD ["frostfs-http-gw"]
|