mirror of
https://github.com/OpenHands/OpenHands.git
synced 2025-12-26 13:52:43 +08:00
18 lines
463 B
Docker
18 lines
463 B
Docker
FROM python:3.12-bookworm
|
|
|
|
RUN apt-get update && apt-get install -y python3 python3-pip
|
|
|
|
RUN mkdir /workspace
|
|
WORKDIR /workspace
|
|
|
|
|
|
COPY data/ /workspace/data/
|
|
COPY tools/ /workspace/tools/
|
|
|
|
# TODO: NEED TO FIGURE DEPENDECIES FOR THESE TOOLS
|
|
|
|
# pushd evaluation/toolqa
|
|
# mkdir data
|
|
# python3 -c "from utils import download_data, download_tools; download_data('/workspace'); download_tools('/workspace')"
|
|
# docker build --network host -t xingyaoww/od-eval-toolqa .
|