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"]