File size: 195 Bytes
7a81ab7
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
FROM python:3.10
ENV PIP_ROOT_USER_ACTION=ignore 

WORKDIR /app
COPY . .

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


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