chore(docker): switch to org.opencontainers image labels

This commit is contained in:
Robert Kaussow 2021-01-17 20:14:01 +01:00
parent 8c9d26dc9a
commit bcc0b55f20
Signed by: xoxys
GPG Key ID: 65362AE74AF98B61
3 changed files with 21 additions and 15 deletions

View File

@ -1,9 +1,11 @@
FROM plugins/base:multiarch
FROM amd64/alpine:3.13
LABEL maintainer="Robert Kaussow <mail@thegeeklab.de>" \
org.label-schema.name="Drone GitHub Comment" \
org.label-schema.vendor="Robert Kaussow" \
org.label-schema.schema-version="1.0"
LABEL maintainer="Robert Kaussow <mail@thegeeklab.de>"
LABEL org.opencontainers.image.authors="Robert Kaussow <mail@thegeeklab.de>"
LABEL org.opencontainers.image.title="drone-github-comment"
LABEL org.opencontainers.image.url="https://github.com/thegeeklab/drone-github-comment"
LABEL org.opencontainers.image.source="https://github.com/thegeeklab/drone-github-comment"
LABEL org.opencontainers.image.documentation="https://github.com/thegeeklab/drone-github-comment"
ADD release/amd64/drone-github-comment /bin/
ENTRYPOINT [ "/bin/drone-github-comment" ]

View File

@ -1,9 +1,11 @@
FROM plugins/base:multiarch
FROM arm32v6/alpine:3.13
LABEL maintainer="Robert Kaussow <mail@thegeeklab.de>" \
org.label-schema.name="Drone GitHub Comment" \
org.label-schema.vendor="Robert Kaussow" \
org.label-schema.schema-version="1.0"
LABEL maintainer="Robert Kaussow <mail@thegeeklab.de>"
LABEL org.opencontainers.image.authors="Robert Kaussow <mail@thegeeklab.de>"
LABEL org.opencontainers.image.title="drone-github-comment"
LABEL org.opencontainers.image.url="https://github.com/thegeeklab/drone-github-comment"
LABEL org.opencontainers.image.source="https://github.com/thegeeklab/drone-github-comment"
LABEL org.opencontainers.image.documentation="https://github.com/thegeeklab/drone-github-comment"
ADD release/arm/drone-github-comment /bin/
ENTRYPOINT [ "/bin/drone-github-comment" ]

View File

@ -1,9 +1,11 @@
FROM plugins/base:multiarch
FROM arm64v7/alpine:3.13
LABEL maintainer="Robert Kaussow <mail@thegeeklab.de>" \
org.label-schema.name="Drone GitHub Comment" \
org.label-schema.vendor="Robert Kaussow" \
org.label-schema.schema-version="1.0"
LABEL maintainer="Robert Kaussow <mail@thegeeklab.de>"
LABEL org.opencontainers.image.authors="Robert Kaussow <mail@thegeeklab.de>"
LABEL org.opencontainers.image.title="drone-github-comment"
LABEL org.opencontainers.image.url="https://github.com/thegeeklab/drone-github-comment"
LABEL org.opencontainers.image.source="https://github.com/thegeeklab/drone-github-comment"
LABEL org.opencontainers.image.documentation="https://github.com/thegeeklab/drone-github-comment"
ADD release/arm64/drone-github-comment /bin/
ENTRYPOINT [ "/bin/drone-github-comment" ]