Skip to content

Commit

Permalink
feat(Dockerfile): switch crackerjack repo
Browse files Browse the repository at this point in the history
This switch of code base is required to seed the database with the default paths of crackerjack, wordlists, rules, ...
  • Loading branch information
Yimura committed Feb 15, 2024
1 parent d71d6f0 commit 9b98669
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cpu/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ FROM ubuntu:jammy

ARG DEBIAN_FRONTEND=noninteractive
ARG HASHCAT_INSTALL_DIR=/tmp/hashcat_install
ARG CRACKERJACK_REPO=https://github.com/Yimura/crackerjack.git

ENV ADDRESS 0.0.0.0
ENV PORT 8080
Expand All @@ -25,7 +26,7 @@ COPY --from=wordlist-fetcher /opt/rules /opt/rules

WORKDIR /opt/crackerjack

RUN git clone https://github.com/sadreck/crackerjack.git . --depth=1 &&\
RUN git clone $CRACKERJACK_REPO . --depth=1 &&\
pip install -r requirements.txt

COPY entrypoint.sh .
Expand Down

0 comments on commit 9b98669

Please sign in to comment.