diff --git a/Dockerfile b/Dockerfile index d4c641d7a2..724c946008 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,6 +9,18 @@ FROM --platform=linux/amd64 python:3.12-slim-bookworm +# OCI Labels +LABEL org.opencontainers.image.title="scancode toolkit" +LABEL org.opencontainers.image.description="scancode toolkit detects licenses,copyrights,dependecies by scanning code to discover and inventory open source and third-party packages used in your code" +LABEL org.opencontainers.image.source="https://github.com/nexB/scancode-toolkit" +LABEL org.opencontainers.image.documentation="https://scancode-toolkit.readthedocs.io/" +LABEL org.opencontainers.image.authors=" https://github.com/aboutcode-org/scancode-toolkit" +LABEL org.opencontainers.image.version="v32.3.0" +LABEL org.opencontainers.image.vendor="nexB Inc." +LABEL org.opencontainers.image.licenses="Apache-2.0" +LABEL org.opencontainers.image.ref.name="latest" + + # 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