Agent-Q3 / evo /Dockerfile
madDegen's picture
consolidate: Evo Dockerfile — training pipeline container
b9faaff verified
FROM python:3.11-slim
RUN apt-get update && apt-get install -y git curl && apt-get clean
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
ENV PYTHONUNBUFFERED=1
ENV CHROMA_PATH=/data/chroma
ENV FEEDBACK_DIR=/data/feedback
VOLUME ["/data"]
CMD ["python", "langgraph_graph.py"]