-
Notifications
You must be signed in to change notification settings - Fork 607
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
Make slim versions of serving images #781
Comments
Hi, What's the reason for using conda inside ubuntu and not a python docker image? Do I understand correctly that you want a seperate image? Or just a slimmer version of the existing? |
Hi @tthebst, the intention of this is provide a base image that has all of the Cortex code in it, but without any of the "user" dependencies installed. Right now our containers ship with PyTorch, TensorFlow, Scikit Learn, XGboost installed, whereas a user probably only needs one of these. So if they are interested in building their own image from our "base" image and using that, or if they are ok We are planning to add these images soon! |
Okay I understand. So you would like just a slim image with just the dependencies needed for cortex, but still based on ubuntu and conda? |
Description
Serving images such as
python-serve
,python-serve-gpu
have a lot of python packages and system libraries to make onboarding easy.Have a slim version that only contains the python packages and system libraries to run Cortex serving.
Motivation
Having unnecessary libraries in docker images can increase storage costs and also network costs.
The text was updated successfully, but these errors were encountered: