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