FROM python:3.12-bookworm RUN apt update && apt install -y git make nginx RUN useradd -m -u 1000 user ENV PATH="/home/user/.local/bin:$PATH" RUN git clone -b feat-issue-3666 https://github.com/embedding-benchmark/mteb.git RUN chown -R user:user /mteb USER user WORKDIR /mteb RUN pip install "pydantic<2.11" RUN pip install ".[leaderboard]" # ENV XDG_CACHE_HOME=/home/user/.cache ENV GRADIO_SERVER_NAME="0.0.0.0" EXPOSE 7860 CMD ["python", "-m", "mteb.leaderboard.app", "--show_rteb"]