dpi-detector/Dockerfile
2026-03-13 23:22:31 +03:00

17 lines
No EOL
316 B
Docker

FROM python:3.14-alpine
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY cli/ ./cli/
COPY core/ ./core/
COPY utils/ ./utils/
COPY dpi_detector.py .
COPY domains.txt .
COPY tcp16.json .
COPY config.yml .
COPY whitelist_sni.txt .
ENTRYPOINT ["python", "dpi_detector.py"]