FROM python:3.12-bookworm
RUN apt-get update && apt-get install -y git curl && rm -rf /var/lib/apt/lists/*
RUN pip install pytest
WORKDIR /workspace
