From b288f175fa933716aac7fdb72c4be5fb1590af68 Mon Sep 17 00:00:00 2001 From: Amitesh Gupta Date: Wed, 15 Jul 2026 11:23:37 +0530 Subject: [PATCH] fix: Added standard OCI image labels (org.opencontainers.image.source Addresses #513. --- Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Dockerfile b/Dockerfile index e3d6f6892..49b1fe357 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,6 +8,10 @@ FROM python:3.12 +LABEL org.opencontainers.image.source="https://github.com/aboutcode-org/vulnerablecode" +LABEL org.opencontainers.image.description="VulnerableCode" +LABEL org.opencontainers.image.licenses="Apache-2.0 AND CC-BY-SA-4.0" + WORKDIR /app # Python settings: Force unbuffered stdout and stderr (i.e. they are flushed to terminal immediately)