FROM aisiuk/inspect-tool-support

# install libraries needed for evaluation
RUN pip install odfpy==1.4.1
RUN pip install pandas==2.2.3

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

# Optional: curl for OwnCloud/HTTP if the agent uses it
RUN apt-get update && apt-get install -y --no-install-recommends curl && \
    apt-get clean && rm -rf /var/lib/apt/lists/*

RUN mkdir -p /opt/eval /workspace
WORKDIR /workspace
