File tree Expand file tree Collapse file tree 1 file changed +44
-0
lines changed
Expand file tree Collapse file tree 1 file changed +44
-0
lines changed Original file line number Diff line number Diff line change 1+ FROM ghcr.io/archimedeos-development/archimedeos-base:latest
2+
3+ LABEL maintainer="Killian Prin-abeil <killian@archimedeos.org>"
4+ LABEL description="Conteneur BlueTeam basé sur ArchimedeOS"
5+
6+ USER root
7+
8+ RUN userdel -r archimede || true
9+
10+ RUN useradd -m -s /bin/bash archytas && \
11+ echo "archytas ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers
12+
13+ RUN pacman -Syu --noconfirm && \
14+ pacman -S --noconfirm \
15+ sleuthkit \
16+ foremost \
17+ testdisk \
18+ binwalk \
19+ exiftool \
20+ volatility \
21+ chkrootkit \
22+ rkhunter \
23+ clamav \
24+ yara \
25+ lynis \
26+ audit \
27+ hashdeep \
28+ gpg \
29+ wireshark-qt \
30+ tcpdump \
31+ tshark \
32+ iftop \
33+ iptraf-ng \
34+ logwatch \
35+ logrotate \
36+ rsyslog \
37+ && pacman -Scc --noconfirm
38+
39+ USER archytas
40+ WORKDIR /home/archytas
41+
42+ EXPOSE 22
43+
44+ CMD hostname aos && exec /bin/bash
You can’t perform that action at this time.
0 commit comments