Files
wordlists/Dockerfile.debian
2025-03-10 10:32:14 +01:00

16 lines
397 B
Docker
Vendored
Raw Permalink Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
FROM debian:bookworm-slim
# Copy wordlists
COPY wordlists /wordlists
# Copy relevant Markdown files
COPY NOTICE.md /wordlists/NOTICE.md
COPY TERMS_OF_USE.md /wordlists/TERMS_OF_USE.md
# Unzip rockyou
WORKDIR /wordlists/famous
RUN apt-get update && apt-get install -y unzip && \
unzip rockyou.zip && rm rockyou.zip
# Cleanup
RUN apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*