Files
cavepediav2/web/agent/Dockerfile
Paul Walko ed9c817d5e
Some checks failed
Build and Push Agent Docker Image / build (push) Successful in 1m40s
Build and Push Docker Image / build (push) Failing after 1m7s
agent docker
2025-12-11 23:45:29 +01:00

14 lines
356 B
Docker

# syntax=docker/dockerfile:1
FROM langchain/langgraph-api:3.12
# Copy dependency files and install
ADD pyproject.toml uv.lock /deps/agent/
RUN cd /deps/agent && pip install --no-cache-dir -e .
# Copy application code
ADD main.py langgraph.json /deps/agent/
# Set the graph configuration
ENV LANGSERVE_GRAPHS='{"vpi_1000": "/deps/agent/main.py:graph"}'