misc: fix label order in dockerfiles

This commit is contained in:
Robert Kaussow
2022-02-09 20:20:07 +01:00
committed by GitHub
parent 0de062ba64
commit c37706c8bb
6 changed files with 26 additions and 26 deletions

View File

@@ -1,9 +1,3 @@
LABEL org.opencontainers.image.title="Prosody IM"
LABEL org.opencontainers.image.description="XMPP server used for signalling."
LABEL org.opencontainers.image.url="https://prosody.im/"
LABEL org.opencontainers.image.source="https://github.com/jitsi/docker-jitsi-meet"
LABEL org.opencontainers.image.documentation="https://jitsi.github.io/handbook/"
ARG JITSI_REPO=jitsi
ARG BASE_TAG=latest
@@ -24,6 +18,12 @@ RUN apt-dpkg-wrap apt-get update && \
FROM ${JITSI_REPO}/base:${BASE_TAG}
LABEL org.opencontainers.image.title="Prosody IM"
LABEL org.opencontainers.image.description="XMPP server used for signalling."
LABEL org.opencontainers.image.url="https://prosody.im/"
LABEL org.opencontainers.image.source="https://github.com/jitsi/docker-jitsi-meet"
LABEL org.opencontainers.image.documentation="https://jitsi.github.io/handbook/"
ENV XMPP_CROSS_DOMAIN="false"
RUN wget -qO /etc/apt/trusted.gpg.d/prosody.gpg https://prosody.im/files/prosody-debian-packages.key && \