|
FROM mambaorg/micromamba:debian12
|
|
|
|
USER root
|
|
|
|
|
|
RUN micromamba create -n sci-agent-eval python=3.10 pip setuptools wheel
|
|
RUN micromamba run -n sci-agent-eval pip install pip-tools
|
|
|
|
RUN mkdir -p /workspace
|
|
WORKDIR /workspace
|
|
|
|
RUN apt-get update && apt-get install -y git
|
|
|
|
RUN git clone https://github.com/OSU-NLP-Group/ScienceAgentBench.git /workspace/
|
|
RUN git checkout 4eddc7db6449a5ade3e37285747c8b208cd54ce7
|
|
|
|
RUN micromamba create -n sci-agent python=3.10 pip setuptools wheel
|
|
RUN micromamba run -n sci-agent pip install -r requirements.txt
|
|
|
|
|
|
RUN find ./ -type f -exec sed -i 's/conda/micromamba/g' {} \;
|
|
|
|
|
|
|
|
|
|
|