FROM python:3.11-slim

WORKDIR /artifact
COPY requirements-cached.txt .
RUN python -m pip install --no-cache-dir -r requirements-cached.txt
COPY . .
CMD ["python", "repro/reproduce_cached_results.py", "--strict"]

