# Test/POC runner image for apps/api FROM python:3.13-slim WORKDIR /app ENV PYTHONDONTWRITEBYTECODE=1 PYTHONUNBUFFERED=1 COPY pyproject.toml ./ COPY app ./app COPY schema.sql ./schema.sql COPY migrations ./migrations COPY tests ./tests RUN pip install --no-cache-dir -e ".[dev]" CMD ["pytest", "-q"]