How to use weaviate client as container?

Hello,
I am trying to use weaviate client inside the container. Is there a weaviate-client image that I can download?
If there isn’t one, could you please help me to create one using Dockerfile.

Thanks.

hi! You can run this on any python container, if using python, for example.

It is just a python library.

What have you tried so far?

Hi,
I wanted to create an image with weaviate client installed from base image alpine with python3.
“RUN pip install -U weavite-client” in Dockerfile failed.

Also, alpine expects to use apk (Alpine Package Keeper).

After several attempts, the below one worked.
RUN python3 -m pip install weaviate-client --break-system-packages

Thanks.

Awesome!! Thanks for sharing!