/
githubmirror
/
hackingtool
Обзор
Документация
Войти
/
githubmirror
/
hackingtool
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Dockerfile
32 строки
1 KB
Hardik Zinzuvadiya
feat: AI operator console — 215 curated tools, AI layer, /find discovery (v2.0.0 rework)
26 июл 2026, 21:48
26 июл 2026, 21:48
2482cc9
Код
Авторство
О чём код?
# syntax=docker/dockerfile:1 # Kali base: many bundled tools already present, and it's the platform this # audience runs. The image installs hackingtool as a proper package (console # entry point `hackingtool`), not the old `python3 hackingtool.py` flat script. FROM kalilinux/kali-rolling:latest LABEL org.opencontainers.image.title="hackingtool" \ org.opencontainers.image.description="All-in-One Hacking Tool for Security Researchers" \ org.opencontainers.image.source="https://github.com/Z4nzu/hackingtool" \ org.opencontainers.image.licenses="MIT" # Runtime system deps: python + git (tools clone their own repos) + php/curl/wget # (a handful of tools shell out to these). --no-install-recommends keeps it lean. RUN apt-get update && \ apt-get install -y --no-install-recommends \ git python3 python3-pip python3-venv curl wget php && \ rm -rf /var/lib/apt/lists/* WORKDIR /src # Copy only the build inputs first so the pip layer caches unless they change. COPY pyproject.toml README.md ./ COPY src ./src # PEP 668 (externally-managed) on Kali → --break-system-packages. This installs # the `hackingtool` console script onto PATH and ships catalog/*.yaml + # pipelines/*.yaml as package data (resolved at runtime via __file__). RUN --mount=type=cache,target=/root/.cache/pip \ pip3 install --break-system-packages . # Tools install their payloads at runtime under here; persist via a volume. RUN mkdir -p /root/.hackingtool/tools WORKDIR /root ENTRYPOINT ["hackingtool"]