mirror of
https://github.com/Runnin4ik/dpi-detector.git
synced 2026-04-28 03:20:20 +00:00
17 lines
No EOL
316 B
Docker
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"] |