mirror of
https://github.com/Oxbian/SIDPS.git
synced 2025-05-18 06:28:21 +02:00
13 lines
308 B
Docker
13 lines
308 B
Docker
FROM python:alpine3.20
|
|
|
|
# Installation des paquets nécessaires pour scapy
|
|
RUN apk -U upgrade && \
|
|
apk add --no-cache libpcap libpcap-dev gcc musl-dev libffi-dev
|
|
RUN pip install scapy
|
|
|
|
# Copier le script de la sonde IDS
|
|
#COPY ids.py /ids.py
|
|
|
|
# Lancer le script de la sonde IDS
|
|
#CMD ["python", "/ids.py"]
|