mirror of
https://github.com/bensuperpc/dockcross.git
synced 2024-12-22 16:24:27 +01:00
18 lines
457 B
Docker
18 lines
457 B
Docker
FROM debian:buster-slim
|
|
MAINTAINER Bensuperpc "bensuperpc@gmail.com"
|
|
|
|
#include "common.debian"
|
|
|
|
#include "common.dockcross"
|
|
|
|
#include "common.docker"
|
|
|
|
# Build-time metadata as defined at http://label-schema.org
|
|
# Note: To avoid systematic rebuild of dependent images, only
|
|
# name and vcs-url are included.
|
|
ARG IMAGE
|
|
ARG VCS_URL
|
|
LABEL org.label-schema.name=$IMAGE \
|
|
org.label-schema.vcs-url=$VCS_URL \
|
|
org.label-schema.schema-version="1.0"
|