mirror of
https://github.com/trustedsec/hate_crack.git
synced 2026-04-28 12:03:11 -07:00
Delete wordlists/kill_transmission.sh (replaced by Python extraction). Update Makefile, Dockerfile.test, lima config, README, TESTING.md, and test_dependencies.py to reference transmission-daemon/transmission-remote instead of transmission-cli. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
29 lines
645 B
Docker
29 lines
645 B
Docker
FROM python:3.13-slim
|
|
|
|
WORKDIR /workspace
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install -y --no-install-recommends \
|
|
build-essential \
|
|
ca-certificates \
|
|
curl \
|
|
git \
|
|
gzip \
|
|
hashcat \
|
|
ocl-icd-libopencl1 \
|
|
pocl-opencl-icd \
|
|
p7zip-full \
|
|
transmission-daemon \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN python -m pip install -q uv==0.9.28
|
|
|
|
COPY . /workspace
|
|
|
|
RUN make install
|
|
|
|
ENV PATH="${HOME}/.local/bin:${PATH}"
|
|
ENV HATE_CRACK_SKIP_INIT=1
|
|
|
|
CMD ["bash", "-lc", "${HOME}/.local/bin/hate_crack --help >/tmp/hc_help.txt && ./hate_crack.py --help >/tmp/hc_script_help.txt"]
|