From d36bf53d759e535ad037970f0abd10e6adc2e620 Mon Sep 17 00:00:00 2001 From: Arshad Date: Mon, 27 Jan 2025 21:04:01 +0530 Subject: [PATCH] Added labels in Dockerfile Signed-off-by: Arshad --- Dockerfile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Dockerfile b/Dockerfile index 45a9b496d..4c1b5c9a8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,6 +10,13 @@ FROM python:3.9 WORKDIR /app +# Labels +LABEL org.opencontainers.image.source="https://github.com/aboutcode-org/vulnerablecode" +LABEL org.opencontainers.image.title="VulnerableCode" +LABEL org.opencontainers.image.documentation="https://vulnerablecode.readthedocs.io/en/latest/introduction.html" +LABEL org.opencontainers.image.version="v35.1.0" +LABEL org.opencontainers.image.licenses="Apache-2.0" + # Python settings: Force unbuffered stdout and stderr (i.e. they are flushed to terminal immediately) ENV PYTHONUNBUFFERED 1 # Python settings: do not write pyc files