allarma-benchmark / Dockerfile
imsaumil
feat: dockerfile + start.sh + readme — InspectAI viewer over mounted dataset
06e4051
Raw
History Blame Contribute Delete
221 Bytes
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"]