mteb-mindsmall-runner / Dockerfile
Sieddi's picture
Upload folder using huggingface_hub
4ff6988 verified
Raw
History Blame Contribute Delete
348 Bytes
FROM python:3.11-slim
WORKDIR /app
RUN apt-get update && apt-get install -y --no-install-recommends \
gcc g++ git && \
rm -rf /var/lib/apt/lists/*
RUN pip install --no-cache-dir mteb==2.18.8 sentence-transformers==5.6.1 gradio
COPY run_task.py .
ENV HF_HUB_DISABLE_XET=1
ENV TOKENIZERS_PARALLELISM=false
CMD ["python", "run_task.py"]