docs: Revert "docs: Delete LGP nav Items from docs" (#5753)

Reverts langchain-ai/langgraph#5743
This commit is contained in:
Lauren Hirata Singh
2025-07-30 18:15:19 -04:00
committed by GitHub
parent 81027b2b80
commit 9d4dd066e5
111 changed files with 20650 additions and 30 deletions
@@ -0,0 +1,19 @@
# How to customize Dockerfile
Users can add an array of additional lines to add to the Dockerfile following the import from the parent LangGraph image. In order to do this, you simply need to modify your `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"
]
}
```
This would install the system packages required to use Pillow if we were working with `jpeg` or `png` image formats.