diff --git a/Dockerfile b/Dockerfile index 621ab30..6a28a74 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,8 +8,11 @@ LABEL description="Alpine-based image containing simply rsync" LABEL org.label-schema.build-date=$BUILD_DATE \ org.label-schema.vcs-url="https://github.com/wULLSnpAXbWZGYDYyhWTKKspEQoaYxXyhoisqHf/docker-alpine-rsync.git" \ org.label-schema.vcs-ref=$VCS_REF \ - org.label-schema.license=GPL-3.0 + org.label-schema.license=GPL-3.0 \ + org.label-schema.description="Alpine-based image containing simply rsync" \ + org.label-schema.vendor="wanderer " -RUN apk update && apk -U upgrade --repository=http://dl-cdn.alpinelinux.org/alpine/edge/testing -RUN apk add --no-cache ca-certificates rsync openssh-client sshpass --repository=http://dl-cdn.alpinelinux.org/alpine/edge/testing && \ - rm -rf /var/cache/apk/* +RUN apk update \ + && apk -U upgrade --repository=http://dl-cdn.alpinelinux.org/alpine/edge/testing +RUN apk add --no-cache ca-certificates rsync openssh-client sshpass --repository=http://dl-cdn.alpinelinux.org/alpine/edge/testing +RUN rm -rf /var/cache/apk/*