madDegen commited on
Commit
b9faaff
·
verified ·
1 Parent(s): 223c5a9

consolidate: Evo Dockerfile — training pipeline container

Browse files
Files changed (1) hide show
  1. evo/Dockerfile +17 -0
evo/Dockerfile ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.11-slim
2
+
3
+ RUN apt-get update && apt-get install -y git curl && apt-get clean
4
+
5
+ WORKDIR /app
6
+ COPY requirements.txt .
7
+ RUN pip install --no-cache-dir -r requirements.txt
8
+
9
+ COPY . .
10
+
11
+ ENV PYTHONUNBUFFERED=1
12
+ ENV CHROMA_PATH=/data/chroma
13
+ ENV FEEDBACK_DIR=/data/feedback
14
+
15
+ VOLUME ["/data"]
16
+
17
+ CMD ["python", "langgraph_graph.py"]