Files
dissect/Dockerfile
T
tabledevil b0a43deaff Replace Alpine Dockerfile with current python:3.12-slim build
From cert_docker_bot @ 78a02a5.
This image is built and published as tabledevil/dissect by the certbot;
the bot's release: watch on fox-it/dissect triggers rebuilds.
2026-06-12 08:30:32 +02:00

23 lines
795 B
Docker

# tabledevil/dissect — Fox-IT dissect DFIR framework (target-query, rdump, …).
#
# Installs the latest `dissect` meta-package from PyPI at build time; the bot's
# release: watch on fox-it/dissect triggers the rebuild. The meta-package pulls
# in target-query, target-shell, target-fs, rdump and the parsers/loaders.
#
# docker run --rm -v /evidence:/data:ro tabledevil/dissect \
# target-query /data/disk.E01 -f hostname
# docker run --rm -it -v /evidence:/data:ro tabledevil/dissect \
# target-shell /data/disk.E01
FROM python:3.12-slim
RUN apt-get update && apt-get install -y --no-install-recommends \
ca-certificates libfuse2 \
&& rm -rf /var/lib/apt/lists/*
RUN pip install --no-cache-dir dissect
WORKDIR /data
ENTRYPOINT ["target-query"]
CMD ["--help"]