mirror of
https://github.com/bellingcat/octosuite.git
synced 2026-06-11 12:58:34 +03:00
The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-DEBIAN12-AOM-6140324 - https://snyk.io/vuln/SNYK-DEBIAN12-OPENSSH-1556053 - https://snyk.io/vuln/SNYK-DEBIAN12-OPENSSH-6139205 - https://snyk.io/vuln/SNYK-DEBIAN12-ZLIB-6008963 - https://snyk.io/vuln/SNYK-DEBIAN12-ZLIB-6008963
12 lines
203 B
Docker
12 lines
203 B
Docker
# syntax=docker/dockerfile:1
|
|
|
|
FROM python:3.13.0a2-slim
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . .
|
|
|
|
RUN pip install --upgrade pip && pip install build && python -m build && pip install dist/*.whl
|
|
|
|
ENTRYPOINT ["octosuite"]
|