6 lines
89 B
Docker
6 lines
89 B
Docker
FROM alpine:latest
|
|
|
|
RUN apk update && \
|
|
apk add s3cmd
|
|
|
|
ENTRYPOINT ["/usr/bin/s3cmd"]
|