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 00:35:37 -04:00
|
|
|
|
2016-11-25 15:21:53 -05:00
|
|
|
#include "common.debian"
|
2016-09-20 00:35:37 -04:00
|
|
|
|
2020-06-26 22:37:25 -05:00
|
|
|
#include "common.dockcross"
|
|
|
|
|
2016-09-20 00:35:37 -04:00
|
|
|
#include "common.docker"
|
2016-10-30 23:57:04 -04:00
|
|
|
|
|
|
|
# Build-time metadata as defined at http://label-schema.org
|
2016-11-22 10:32:56 -05:00
|
|
|
# Note: To avoid systematic rebuild of dependent images, only
|
|
|
|
# name and vcs-url are included.
|
2016-10-30 23:57:04 -04:00
|
|
|
ARG IMAGE
|
|
|
|
ARG VCS_URL
|
2016-11-22 10:32:56 -05:00
|
|
|
LABEL org.label-schema.name=$IMAGE \
|
2016-10-30 23:57:04 -04:00
|
|
|
org.label-schema.vcs-url=$VCS_URL \
|
|
|
|
org.label-schema.schema-version="1.0"
|