We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b7ba473 + 6aa3d73 commit 972ecccCopy full SHA for 972eccc
docker/Dockerfile.base
@@ -19,9 +19,20 @@ RUN apt update && apt install -yqq \
19
nano \
20
socat \
21
libsndfile1 \
22
- build-essential llvm tk-dev && \
+ build-essential \
23
+ llvm tk-dev \
24
+ libglvnd-dev && \
25
rm -rf /var/lib/apt/lists/*
26
27
+#enable opengl support with nvidia gpu
28
+RUN printf '%s\n' \
29
+ '{' \
30
+ ' "file_format_version" : "1.0.0",' \
31
+ ' "ICD" : {' \
32
+ ' "library_path" : "libEGL_nvidia.so.0"' \
33
+ ' }' \
34
+ '}' > /usr/share/glvnd/egl_vendor.d/10_nvidia.json
35
+
36
# Conda setup
37
RUN mkdir -p /workspace/comfystream && \
38
wget "https://repo.anaconda.com/miniconda/Miniconda3-${CONDA_VERSION}-Linux-x86_64.sh" -O /tmp/miniconda.sh && \
0 commit comments