mirror of
https://github.com/bellingcat/octosuite.git
synced 2026-06-08 03:18:35 +03:00
The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-DEBIAN12-GLIBC-6617103 - https://snyk.io/vuln/SNYK-DEBIAN12-GLIBC-6617103 - https://snyk.io/vuln/SNYK-DEBIAN12-GLIBC-6673964 - https://snyk.io/vuln/SNYK-DEBIAN12-GLIBC-6673964 - 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.0b1-slim
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . .
|
|
|
|
RUN pip install --upgrade pip && pip install build && python -m build && pip install dist/*.whl
|
|
|
|
ENTRYPOINT ["octosuite"]
|