Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docker/ctf.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ FROM ubuntu:latest

# Install required dependencies
RUN apt-get update && \
apt-get install -y bash python3 python3-pip psmisc bsdmainutils cron imagemagick dnsutils git wget gcc sleuthkit netcat unzip curl gdb poppler-utils && \
apt-get install -y bash python3 python3-pip psmisc bsdmainutils cron imagemagick dnsutils git wget gcc sleuthkit netcat-openbsd unzip curl gdb poppler-utils && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*

# Install required pip dependencies
RUN pip3 install pycryptodome
RUN pip3 install --break-system-packages pycryptodome

# Load in per-task assets
COPY ../data/ctf/task_assets/. /ctf/
Expand Down