File tree 2 files changed +5
-4
lines changed
2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -16,13 +16,11 @@ RUN apt-get update && apt-get install -y \
16
16
build-essential \
17
17
openssh-server \
18
18
sudo \
19
- bash \
20
19
gcc \
21
20
jq \
22
21
g++ \
23
22
make \
24
23
iproute2 \
25
- libgl1-mesa-glx \
26
24
&& rm -rf /var/lib/apt/lists/*
27
25
28
26
RUN mkdir -p -m0755 /var/run/sshd
@@ -41,4 +39,4 @@ RUN echo "" > /opendevin/bash.bashrc
41
39
# - agentskills dependencies
42
40
RUN /opendevin/miniforge3/bin/pip install --upgrade pip
43
41
RUN /opendevin/miniforge3/bin/pip install jupyterlab notebook jupyter_kernel_gateway flake8
44
- RUN /opendevin/miniforge3/bin/pip install python-docx PyPDF2 python-pptx pylatexenc openai opencv-python
42
+ RUN /opendevin/miniforge3/bin/pip install python-docx PyPDF2 python-pptx pylatexenc openai
Original file line number Diff line number Diff line change @@ -23,7 +23,10 @@ def generate_dockerfile_content(base_image: str) -> str:
23
23
' bash Miniforge3-$(uname)-$(uname -m).sh -b -p /opendevin/miniforge3 && \\ \n '
24
24
' chmod -R g+w /opendevin/miniforge3 && \\ \n '
25
25
' bash -c ". /opendevin/miniforge3/etc/profile.d/conda.sh && conda config --set changeps1 False && conda config --append channels conda-forge"; \\ \n '
26
- ' fi'
26
+ ' fi\n '
27
+ 'RUN /opendevin/miniforge3/bin/pip install --upgrade pip\n '
28
+ 'RUN /opendevin/miniforge3/bin/pip install jupyterlab notebook jupyter_kernel_gateway flake8\n '
29
+ 'RUN /opendevin/miniforge3/bin/pip install python-docx PyPDF2 python-pptx pylatexenc openai\n '
27
30
).strip ()
28
31
return dockerfile_content
29
32
You can’t perform that action at this time.
0 commit comments