Skip to content
Open
Show file tree
Hide file tree
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
5 changes: 4 additions & 1 deletion .ort.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,7 @@ resolutions:
rule_violations:
- message: ".*PyPI::packaging:24\\.2.*"
reason: 'CANT_FIX_EXCEPTION'
comment: 'Apache-2 License: https://github.com/pypa/packaging/blob/main/LICENSE'
comment: 'Apache-2 License: https://github.com/pypa/packaging/blob/main/LICENSE'
- message: ".*PyPI::urllib3:2\\.6\\.3.*"
reason: "CANT_FIX_EXCEPTION"
comment: "urllib3 is licensed under MIT: https://github.com/urllib3/urllib3/blob/main/LICENSE.txt"
7 changes: 5 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,11 @@ RUN poetry install --no-interaction --no-ansi --only main

FROM python:3.11-alpine

# fix CVE-2024-6345
RUN pip install --no-cache-dir "setuptools==70.0.0"
# security updates
RUN pip install --no-cache-dir --upgrade \
"setuptools>=82.0.0" \
"wheel>=0.46.2" \
"urllib3>=2.6.3"

ENV DIAL_BASE_URL=''
ENV SOURCES=''
Expand Down
Loading
Loading