FROM python:3.11-slim WORKDIR /app # Build deps for isotree (C++ extension) RUN apt-get update && apt-get install -y --no-install-recommends g++ && rm -rf /var/lib/apt/lists/* COPY shared/python/ja4_common/ /app/shared/ja4_common/ RUN pip install --no-cache-dir /app/shared/ja4_common/ COPY services/bot-detector/bot_detector/requirements.txt . RUN pip install --no-cache-dir -r requirements.txt RUN pip install --no-cache-dir pytest pytest-mock COPY services/bot-detector/bot_detector/ /app/bot_detector/ WORKDIR /app CMD ["pytest", "bot_detector/tests/", "-v"]