infinity / Dockerfile
michaelfeil's picture
Update Dockerfile
ba9183a verified
raw
history blame
203 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]==0.0.41
CMD ["sh", "start-infinity-emb.sh"]