infinity / Dockerfile
michaelfeil
add a v1 in docker
7a81ab7
raw
history blame
No virus
195 Bytes
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"]