SaylorTwift HF Staff commited on
Commit
797d85d
·
verified ·
1 Parent(s): 2f33cb4

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +15 -0
Dockerfile ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Use Python slim image for smaller size
2
+ FROM python:3.11-slim
3
+
4
+ # Set working directory
5
+ WORKDIR /app
6
+
7
+ # Install packages
8
+ RUN pip install --no-cache-dir \
9
+ inspect-ai==0.3.154 \
10
+ datasets \
11
+ huggingface-hub \
12
+ openai
13
+
14
+ # Default command
15
+ CMD ["python"]