mirror of
https://github.com/Runnin4ik/dpi-detector.git
synced 2026-04-28 03:20:20 +00:00
13 lines
No EOL
238 B
Docker
13 lines
No EOL
238 B
Docker
FROM python:3.14-alpine
|
|
|
|
WORKDIR /app
|
|
|
|
COPY requirements.txt .
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
COPY dpi_detector.py .
|
|
COPY domains.txt .
|
|
COPY tcp_16_20_targets.json .
|
|
COPY config.py .
|
|
|
|
CMD ["python", "dpi_detector.py"] |