mirror of
https://github.com/trustedsec/hate_crack.git
synced 2026-07-07 21:07:36 -07:00
15 lines
309 B
Docker
15 lines
309 B
Docker
FROM python:3.13-slim
|
|
|
|
WORKDIR /workspace
|
|
|
|
RUN python -m pip install -q uv
|
|
|
|
COPY . /workspace
|
|
|
|
RUN uv tool install .
|
|
|
|
ENV PATH="/root/.local/bin:${PATH}"
|
|
ENV HATE_CRACK_SKIP_INIT=1
|
|
|
|
CMD ["bash", "-lc", "/root/.local/bin/hate_crack --help >/tmp/hc_help.txt && ./hate_crack.py --help >/tmp/hc_script_help.txt"]
|