Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
Signed-off-by: Marcin Kozlowski <[email protected]>
  • Loading branch information
marcinguy authored Jul 6, 2024
1 parent a63a3ee commit 68d8a0a
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions docker/docker/worker-cli/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -79,31 +79,30 @@ RUN pip install --upgrade pip && \
email_validator testresources yara-scanner sqlalchemy===1.4.46

# Clone the checkmate repository
RUN git clone -b checkmate3-cli git@github.com:topcodersonline-solutions/checkmate-ce /checkmate
RUN git clone -b checkmate3-cli https://github.com/topcodersonline-solutions/checkmate-ce.git /checkmate

# Clone the betterscan repository
RUN git clone git@github.com:topcodersonline-solutions/betterscan-ce /srv/betterscan
RUN git clone https://github.com/topcodersonline-solutions/betterscan-ce.git /srv/betterscan

# Install checkmate
RUN cd /checkmate && python3 setup.py install

# Clone and install trufflehog3
RUN git clone git@github.com:topcodersonline-solutions/trufflehog3-oss.git /root/trufflehog3-oss
RUN git clone https://github.com/topcodersonline-solutions/trufflehog3-oss.git /root/trufflehog3-oss
RUN cd /root/trufflehog3-oss && python3 setup.py install

# Clone graudit repository
RUN git clone git@github.com:topcodersonline-solutions/graudit-ce /root/graudit
RUN git clone https://github.com/topcodersonline-solutions/graudit-ce.git /root/graudit

# Clone text4shell repository
RUN git clone git@github.com:topcodersonline-solutions/text4shell-ce /root/text4shell-ce
RUN git clone https://github.com/topcodersonline-solutions/text4shell-ce.git /root/text4shell-ce

# Clone ptpt repository and build
RUN git clone git@github.com:topcodersonline-solutions/ptpt /root/ptpt
RUN git clone https://github.com/topcodersonline-solutions/ptpt.git /root/ptpt
RUN cd /root/ptpt && go build

# Copy the ptpt binary to /usr/local/bin
RUN cp /root/ptpt/ptpt /usr/local/bin/ptpt

# Set up additional tools
RUN wget https://github.com/pmd/pmd/releases/download/pmd_releases%2F6.41.0/pmd-bin-6.41.0.zip && \
unzip pmd-bin-6.41.0.zip && \
Expand Down

0 comments on commit 68d8a0a

Please sign in to comment.