Skip to content

Commit aa87102

Browse files
committed
comment out apt-get install git, opengl, python3, opencv
1 parent 76d6110 commit aa87102

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

Dockerfile

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
# Dockerfile for OmniParser with GPU and OpenGL support.
22
#
3-
# Author: Richard Abrich (@OpenAdaptAI)
4-
#
53
# Base: nvidia/cuda:12.3.1-devel-ubuntu22.04
64
# Features:
75
# - Python 3.12 with Miniconda environment.
@@ -18,25 +16,27 @@
1816
# ```bash
1917
# sudo docker run -d -p 7861:7861 --gpus all --name omniparser-container omniparser
2018
# ```
19+
#
20+
# Author: Richard Abrich (@OpenAdaptAI)
2121

2222
FROM nvidia/cuda:12.3.1-devel-ubuntu22.04
2323

2424
# Install system dependencies with explicit OpenGL libraries
2525
RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y \
26-
git \
26+
#git \
2727
git-lfs \
2828
wget \
29-
libgl1 \
30-
libglib2.0-0 \
31-
libsm6 \
32-
libxext6 \
33-
libxrender1 \
34-
libglu1-mesa \
35-
libglib2.0-0 \
36-
libsm6 \
37-
libxrender1 \
38-
libxext6 \
39-
python3-opencv \
29+
#libgl1 \
30+
#libglib2.0-0 \
31+
#libsm6 \
32+
#libxext6 \
33+
#libxrender1 \
34+
#libglu1-mesa \
35+
#libglib2.0-0 \
36+
#libsm6 \
37+
#libxrender1 \
38+
#libxext6 \
39+
#python3-opencv \
4040
&& apt-get clean \
4141
&& rm -rf /var/lib/apt/lists/* \
4242
&& git lfs install

0 commit comments

Comments
 (0)