File tree Expand file tree Collapse file tree 1 file changed +14
-14
lines changed
Expand file tree Collapse file tree 1 file changed +14
-14
lines changed Original file line number Diff line number Diff line change 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.
1816# ```bash
1917# sudo docker run -d -p 7861:7861 --gpus all --name omniparser-container omniparser
2018# ```
19+ #
20+ # Author: Richard Abrich (@OpenAdaptAI)
2121
2222FROM nvidia/cuda:12.3.1-devel-ubuntu22.04
2323
2424# Install system dependencies with explicit OpenGL libraries
2525RUN 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
You can’t perform that action at this time.
0 commit comments