-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Perf] Reduce Docker image size #41
Comments
Does onnx file able to download on the fly as doing by default in current code base? |
The onnx file is incorporated in the docker image.
If you try to remove this line, the container execution will fail with the following error
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The docker image size is currently 683MB and based on
bookworm-slim
.The binary requires heavy data files like onnx file, but there's still room for improvement.
I tried to use
alpine
base image without success. The rust compilation fails being unable to findlibclang.so
file.The text was updated successfully, but these errors were encountered: