mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-08 20:42:30 +08:00
Added doc for switching elasticsearch to infinity (#3370)
### What problem does this PR solve? Added doc for switching elasticsearch to infinity ### Type of change - [x] New Feature (non-breaking change which adds functionality) - [x] Documentation Update
This commit is contained in:
@ -61,4 +61,21 @@ docker build -f Dockerfile -t infiniflow/ragflow:dev .
|
||||
```
|
||||
|
||||
</TabItem>
|
||||
<TabItem value="linux/arm64">
|
||||
|
||||
## 🔧 Build a Docker image for linux arm64
|
||||
|
||||
We are currently unable to regularly build multi-arch images with CI and have no plans to publish arm64 images in the near future.
|
||||
However, you can build an image yourself on a linux/arm64 host machine:
|
||||
|
||||
```bash
|
||||
git clone https://github.com/infiniflow/ragflow.git
|
||||
cd ragflow/
|
||||
pip3 install huggingface-hub nltk
|
||||
python3 download_deps.py
|
||||
docker build --build-arg ARCH=arm64 -f Dockerfile.slim -t infiniflow/ragflow:dev-slim .
|
||||
docker build --build-arg ARCH=arm64 -f Dockerfile -t infiniflow/ragflow:dev .
|
||||
```
|
||||
</TabItem>
|
||||
|
||||
</Tabs>
|
||||
Reference in New Issue
Block a user