[BUG] Seems to few libgrpc dependencies are missed in registry.cn-hongkong.aliyuncs.com/graphscope/interactive-executor:latest
- Dominant language
- C++
- Stars
- 3.6k
- Forks
- 468
- Avg merge
- 29m
- Merged PRs (30d)
- 1
Description
**Describe the bug**
When try to reproduce [this](https://graphscope.io/docs/latest/interactive_engine/deployment) tutorial, I've got an issue with container "engine", running in pod "-gie-standalone-store-", which running from image registry.cn-hongkong.aliyuncs.com/graphscope/interactive-executor:latest:
- error while loading shared libraries: libgpr.so.10
- error while loading shared libraries: libgrpc++.so.1
**To Reproduce**
***Short way***
1. Run `docker run --rm registry.cn-hongkong.aliyuncs.com/graphscope/interactive-executor:latest vineyeardd`
2. You will see an error: `vineyardd: error while loading shared libraries: libgpr.so.10: cannot open shared object file: No such file or directory`
***Way from the tutorial***
1. Follow all the steps from the [tutorial](https://graphscope.io/docs/latest/interactive_engine/deployment)
2. After you do `helm install [YOUR_RELEASE_NAME] gie-standalone` step, run `kubectl logs [YOUR_RELEASE_NAME]-gie-standalone-store-0 -n `
3. You will see an error `vineyardd: error while loading shared libraries: libgpr.so.10: cannot open shared object file: No such file or directory`
**Expected behavior**
No "loading shared libraries" errors occurred
**Screenshots**
**Environment:**
- GraphScope version: v0.29.0
- OS: Ubuntu
- Version 24.04
- Kubernetes Version 1.28.14
**Additional context**
When I connect to container and update dependencies:
```
sudo apt-get update
sudo apt-get install libgrpc10 libgrpc++1
```
It seems to be fixed this issue
Contributor guide
Assessment
This issue has not been assessed yet.