2022-12-15 17:08:25 +03:00
|
|
|
FROM alpine AS frostfs-s3-gw
|
2022-07-05 14:19:09 +03:00
|
|
|
RUN apk add --no-cache bash ca-certificates
|
|
|
|
|
|
|
|
WORKDIR /
|
|
|
|
|
2022-12-15 17:08:25 +03:00
|
|
|
COPY /bin/frostfs-s3-gw /bin/frostfs-s3-gw
|
|
|
|
COPY /bin/frostfs-s3-authmate /bin/frostfs-s3-authmate
|
2022-07-05 14:19:09 +03:00
|
|
|
|
2022-12-15 17:08:25 +03:00
|
|
|
ENTRYPOINT ["/bin/frostfs-s3-gw"]
|