FROM python:3.11-slim # inspect-ai bundles the InspectAI eval viewer (`inspect view`). RUN pip install --no-cache-dir inspect-ai COPY start.sh /app/start.sh RUN chmod +x /app/start.sh EXPOSE 7860 CMD ["/app/start.sh"]