From d0fcf17c35bfe1822ef672c2baf8e1ea5e5f0689 Mon Sep 17 00:00:00 2001 From: Stephen Finucane Date: Thu, 31 Oct 2024 21:03:59 +0000 Subject: [PATCH] Add metadata Signed-off-by: Stephen Finucane --- Dockerfile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Dockerfile b/Dockerfile index 4da1c2a..ba7faaa 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,11 @@ FROM ubuntu:22.04 AS base +LABEL org.opencontainers.image.title="pyenv (Patchwork development)" +LABEL org.opencontainers.image.description="pyenv container for use in Patchwork development and CI" +LABEL org.opencontainers.image.source="https://github.com/getpatchwork/pyenv" +LABEL org.opencontainers.image.documentation="https://patchwork.readthedocs.io/en/latest/" +LABEL org.opencontainers.image.licenses=GPL + ENV LANG="C.UTF-8" ENV LC_ALL="C.UTF-8" ENV PATH="/opt/pyenv/shims:/opt/pyenv/bin:$PATH"