FROM aisiuk/inspect-tool-support

RUN mkdir -p /workspace
WORKDIR /workspace

RUN pip install pandas==2.2.3
RUN pip install PyPDF2==3.0.1

# Ensure /utils is a directory before copying so the scorer can read
# `/utils/personell_data_golden.csv` reliably.
RUN mkdir -p /utils
COPY personnel_data_golden.csv /utils/personnel_data_golden.csv
