mirror of
https://github.com/bellingcat/octosuite.git
synced 2026-06-12 13:28:35 +03:00
The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-DEBIAN12-GLIBC-6210088 - https://snyk.io/vuln/SNYK-DEBIAN12-GLIBC-6210088 - https://snyk.io/vuln/SNYK-DEBIAN12-GLIBC-6210098 - https://snyk.io/vuln/SNYK-DEBIAN12-GLIBC-6210098 - https://snyk.io/vuln/SNYK-DEBIAN12-GNUTLS28-6159410
12 lines
203 B
Docker
12 lines
203 B
Docker
# syntax=docker/dockerfile:1
|
|
|
|
FROM python:3.13.0a3-slim
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . .
|
|
|
|
RUN pip install --upgrade pip && pip install build && python -m build && pip install dist/*.whl
|
|
|
|
ENTRYPOINT ["octosuite"]
|