File size: 323 Bytes
b80479c
7a81ab7
 
d743548
7a81ab7
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
FROM nvidia/cuda:12.4.1-cudnn-runtime-ubuntu22.04
ENV PIP_ROOT_USER_ACTION=ignore 

RUN apt-get update && apt-get upgrade -y && apt-get install -y python3 python3-dev python3-pip
WORKDIR /app
COPY . .

RUN pip3 install --upgrade pip && \
  pip install --no-cache-dir infinity-emb[all]


CMD ["sh", "start-infinity-emb.sh"]