Dockerfile 221 B

12345678910
  1. FROM python:3.12-bookworm
  2. RUN apt-get update && apt-get install -y python3 python3-pip git gcc
  3. WORKDIR /root
  4. COPY requirements.txt .
  5. RUN pip install -r requirements.txt
  6. # docker build -t xingyaoww/od-eval-mint:v1.0 .