FROM python:3.11-slim WORKDIR /app COPY shared/python/ja4_common/ /app/shared/ja4_common/ RUN pip install --no-cache-dir /app/shared/ja4_common/ COPY services/dashboard/requirements.txt . RUN pip install --no-cache-dir -r requirements.txt RUN pip install --no-cache-dir pytest pytest-mock httpx COPY services/dashboard/backend/ ./backend/ COPY services/dashboard/backend/tests/ ./backend/tests/ CMD ["pytest", "backend/tests/", "-v"]