ragflow
ragflow copied to clipboard
[Bug]: [Bug]: v0.16.0 arm64 docker image is wrong (amd64)
Is there an existing issue for the same bug?
- [x] I have checked the existing issues.
RAGFlow workspace code commit ID
v0.16.0
RAGFlow image version
v0.16.0
Other environment information
Actual behavior
standard_init_linux.go:211: exec user process caused "exec format error"
Expected behavior
No response
Steps to reproduce
docker run
Additional information
No response
If it's ARM, you need to build the image yourself.
git clone https://github.com/infiniflow/ragflow.git
cd ragflow/
pip3 install huggingface_hub nltk
python3 download_deps.py
docker build -f Dockerfile.deps -t infiniflow/ragflow_deps .
docker build -f Dockerfile -t infiniflow/ragflow:nightly .
docker build --build-arg LIGHTEN=1 -f Dockerfile -t infiniflow/ragflow:nightly-slim .
@KevinHuSh thank u
@KevinHuSh thanks!
#5367