inspect / Dockerfile
SaylorTwift's picture
SaylorTwift HF Staff
Update Dockerfile
6102b6b verified
raw
history blame contribute delete
281 Bytes
# 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