File size: 281 Bytes
797d85d
 
 
 
6102b6b
797d85d
 
 
 
 
 
8025b22
797d85d
 
6102b6b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# 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