2023-09-30 14:25:32 +02:00
|
|
|
ARG DOCKER_IMAGE=debian:bookworm-slim
|
2021-06-29 22:14:18 +02:00
|
|
|
FROM $DOCKER_IMAGE
|
|
|
|
|
2021-10-04 12:51:28 +02:00
|
|
|
LABEL maintainer="Matt McCormick matt.mccormick@kitware.com"
|
2016-09-20 06:35:37 +02:00
|
|
|
|
2016-11-25 21:21:53 +01:00
|
|
|
#include "common.debian"
|
2016-09-20 06:35:37 +02:00
|
|
|
|
2020-06-27 05:37:25 +02:00
|
|
|
#include "common.dockcross"
|
|
|
|
|
2016-09-20 06:35:37 +02:00
|
|
|
#include "common.docker"
|
2016-10-31 04:57:04 +01:00
|
|
|
|
|
|
|
# Build-time metadata as defined at http://label-schema.org
|
2016-11-22 16:32:56 +01:00
|
|
|
# Note: To avoid systematic rebuild of dependent images, only
|
|
|
|
# name and vcs-url are included.
|
2016-10-31 04:57:04 +01:00
|
|
|
ARG IMAGE
|
|
|
|
ARG VCS_URL
|
2016-11-22 16:32:56 +01:00
|
|
|
LABEL org.label-schema.name=$IMAGE \
|
2016-10-31 04:57:04 +01:00
|
|
|
org.label-schema.vcs-url=$VCS_URL \
|
|
|
|
org.label-schema.schema-version="1.0"
|