Files
.github
android-arm
android-arm64
android-x86
android-x86_64
imagefiles
linux-arm64
linux-arm64-musl
linux-armv5
linux-armv5-musl
linux-armv6
linux-armv6-musl
linux-armv7
linux-armv7a
linux-armv7l-musl
linux-mips
linux-mipsel
linux-ppc64le
linux-s390x
linux-x64
linux-x64-clang
linux-x86
manylinux-common
manylinux1-x64
manylinux1-x86
manylinux2010-x64
manylinux2010-x86
manylinux2014-aarch64
manylinux2014-x64
manylinux2014-x86
test
web-wasm
windows-shared-x64
windows-shared-x64-posix
windows-shared-x86
windows-static-x64
windows-static-x64-posix
windows-static-x86
.gitattributes
.gitignore
Dockerfile.in
LICENSE
Makefile
README.md
common-manylinux.crosstool
common.crosstool
common.debian
common.dockcross
common.docker
common.label-and-env
common.manylinux
common.windows
dockcross/common.label-and-env
Jean-Christophe Fillion-Robin 68b4549a50 Introduce "common.label-and-env"
This will simply the removal of deprecated "org.label-schema" annotation [1]
and the introduction of open containers ones [2]

[1] http://label-schema.org/rc1/
[2] https://github.com/opencontainers/image-spec/blob/master/annotations.md
2021-04-18 19:15:26 +02:00

15 lines
432 B
Plaintext

# Build-time metadata as defined at http://label-schema.org
ARG BUILD_DATE
ARG IMAGE
ARG VERSION=latest
ARG VCS_REF
ARG VCS_URL
LABEL org.label-schema.build-date=$BUILD_DATE \
org.label-schema.name=$IMAGE \
org.label-schema.version=$VERSION \
org.label-schema.vcs-ref=$VCS_REF \
org.label-schema.vcs-url=$VCS_URL \
org.label-schema.schema-version="1.0"
ENV DEFAULT_DOCKCROSS_IMAGE ${IMAGE}:${VERSION}