ar08's picture
Upload 1040 files
246d201 verified
raw
history blame contribute delete
231 Bytes
FROM python:3.12-bookworm
RUN apt-get update && apt-get install -y python3 python3-pip git gcc
WORKDIR /root
COPY requirements.txt .
RUN pip install -r requirements.txt
# docker build -t xingyaoww/od-eval-mint:v1.0 .