katanaml / sparrow

Data processing with ML, LLM and Vision LLM
https://katanaml.io
GNU General Public License v3.0
3.73k stars 379 forks source link

Seeking Help to run the service in docker #62

Closed Asif-droid closed 3 months ago

Asif-droid commented 3 months ago

I used this docker file to run the llamaindex service :

FROM pytorch/pytorch:2.3.0-cuda12.1-cudnn8-devel

WORKDIR /app

COPY requirements.txt requirements.txt

RUN pip install --no-cache-dir -r requirements.txt

RUN apt-get update && apt-get install -y libgl1-mesa-glx

RUN apt-get update && apt-get install -y libglib2.0-0

COPY . .

EXPOSE 5800

CMD ["bash"]

but having the error python version 3.10.4 is needed . current version is 3.10.14

anyone plz help me run this service on docker.....

abaranovskis-redsamurai commented 3 months ago

I havent tested running in Docker.