Dockerfile.full.v1.2 576 B

123456789101112
  1. FROM ghcr.io/opendevin/eval-swe-bench:full-v1.1
  2. RUN apt-get update && apt-get install -y \
  3. libgl1-mesa-glx \
  4. && rm -rf /var/lib/apt/lists/*
  5. # install basic dependencies for CodeActAgent
  6. RUN pip3 install --upgrade pip
  7. RUN pip3 install jupyterlab notebook jupyter_kernel_gateway flake8
  8. # TODO: those dependencies are needed for agentskills, we should pack them in a new sandbox image
  9. RUN pip3 install python-docx PyPDF2 python-pptx pylatexenc openai opencv-python
  10. # docker build -t ghcr.io/opendevin/eval-swe-bench:full-v1.2 -f ./scripts/docker/Dockerfile.full.v1.2 .