aboutsummaryrefslogtreecommitdiff
path: root/skopeo/Dockerfile
blob: 5a7b0a3780da8dd374eec763155b2cce355af611 (plain)
1
2
3
4
5
6
7
8
9
FROM alpine:edge
LABEL maintainer="Mike Crute <mike@crute.us>"

RUN set -euxo pipefail; \
    apk add --no-cache \
        skopeo \
    ;

ENTRYPOINT [ "/usr/bin/skopeo" ]