Spaces:
Runtime error
Runtime error
| # Use Python slim image for smaller size | |
| FROM python:3.11-slim | |
| # Set working directory | |
| RUN useradd -m -u 1000 user | |
| WORKDIR /app | |
| # Install packages | |
| RUN pip install --no-cache-dir \ | |
| inspect-ai==0.3.154 \ | |
| datasets \ | |
| huggingface_hub \ | |
| openai | |
| COPY --chown=user . /app |