From e11398ba129a124a6e712ea96ea018c8486cec08 Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Wed, 18 Jun 2025 14:24:34 -0700 Subject: [PATCH] Add `LABEL` data to the devcontainer --- devcontainer/Dockerfile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/devcontainer/Dockerfile b/devcontainer/Dockerfile index a8987b3..3116747 100644 --- a/devcontainer/Dockerfile +++ b/devcontainer/Dockerfile @@ -1,5 +1,11 @@ FROM docker.io/library/fedora:41 +LABEL org.opencontainers.image.base.name="docker.io/library/fedora:41" +LABEL org.opencontainers.image.source="https://github.com/python/cpython-devcontainers" +LABEL org.opencontainers.image.title="CPython development container" +LABEL org.opencontainers.image.description="CPython development container with the tooling to work on Linux or WASI builds." +LABEL org.opencontainers.image.authors="Brett Cannon" + ARG TARGETARCH ENV CC=clang