langgraph.json file by passing in the commands you want run to the dockerfile_lines key. For example, if we wanted to use Pillow in our graph you would need to add the following dependencies:
jpeg or png image formats.
We've raised a $125M Series B to build the platform for agent engineering. Read more.
langgraph.json file by passing in the commands you want run to the dockerfile_lines key. For example, if we wanted to use Pillow in our graph you would need to add the following dependencies:
{
"dependencies": ["."],
"graphs": {
"openai_agent": "./openai_agent.py:agent",
},
"env": "./.env",
"dockerfile_lines": [
"RUN apt-get update && apt-get install -y libjpeg-dev zlib1g-dev libpng-dev",
"RUN pip install Pillow"
]
}
jpeg or png image formats.
Was this page helpful?