mirror of
https://github.com/bensuperpc/dockcross.git
synced 2025-08-13 12:11:00 +02:00
.github
android-arm
android-arm64
android-x86
android-x86_64
common
common-manylinux.crosstool
common.buildroot
common.crosstool
common.debian
common.dockcross
common.docker
common.label-and-env
common.manylinux
common.webassembly
common.windows
imagefiles
linux-arm64
linux-arm64-full
linux-arm64-lts
linux-arm64-musl
linux-armv5
linux-armv5-musl
linux-armv5-uclibc
linux-armv6
linux-armv6-lts
linux-armv6-musl
linux-armv7
linux-armv7-lts
linux-armv7a
linux-armv7l-musl
linux-m68k-uclibc
linux-mips
linux-mips-lts
linux-mipsel-lts
linux-ppc64le
linux-riscv32
linux-riscv64
linux-s390x
linux-x64
linux-x64-clang
linux-x64-tinycc
linux-x86
linux-x86_64-full
linux-xtensa-uclibc
manylinux-common
manylinux2014-aarch64
manylinux2014-x64
manylinux2014-x86
test
tools
web-wasi
web-wasm
windows-arm64
windows-armv7
windows-shared-x64
windows-shared-x64-posix
windows-shared-x86
windows-static-x64
windows-static-x64-posix
windows-static-x86
.gitattributes
.gitignore
CONTRIBUTING.md
Dockerfile.in
LICENSE
Makefile
README.md
Move common files to common folder Move patch files to patch folder Fix clean rule in Makefile (Remove /Dockerfile in path, he is already there) Signed-off-by: Bensuperpc <bensuperpc@gmail.com>
15 lines
432 B
Plaintext
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}
|