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