Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down