OpenHands 678436da30
Fix issue #5222: [Refactor]: Refactor the evaluation directory (#5223)
Co-authored-by: Engel Nyst <enyst@users.noreply.github.com>
2024-11-25 08:35:52 -05:00

11 lines
221 B
Docker

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 .