FROM python:alpine WORKDIR /app COPY . . RUN apk add \ gcc \ libpcap-dev \ && pip install -r requirements.txt CMD ["python", "-u", "main.py"]