File size: 231 Bytes
246d201
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
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 .