Spaces:
Sleeping
Sleeping
Samarth Naik commited on
Commit ·
164f30d
1
Parent(s): a3e5b3d
Fix Dockerfile: update OpenGL package name for Debian trixie compatibility
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
|
@@ -7,12 +7,13 @@ RUN apt-get update && apt-get install -y \
|
|
| 7 |
wget \
|
| 8 |
curl \
|
| 9 |
build-essential \
|
| 10 |
-
libgl1-mesa-
|
| 11 |
libglib2.0-0 \
|
| 12 |
libsm6 \
|
| 13 |
libxext6 \
|
| 14 |
libxrender-dev \
|
| 15 |
libgomp1 \
|
|
|
|
| 16 |
&& rm -rf /var/lib/apt/lists/*
|
| 17 |
|
| 18 |
# Create a non-root user (required by Hugging Face Spaces)
|
|
|
|
| 7 |
wget \
|
| 8 |
curl \
|
| 9 |
build-essential \
|
| 10 |
+
libgl1-mesa-dev \
|
| 11 |
libglib2.0-0 \
|
| 12 |
libsm6 \
|
| 13 |
libxext6 \
|
| 14 |
libxrender-dev \
|
| 15 |
libgomp1 \
|
| 16 |
+
libgthread-2.0-0 \
|
| 17 |
&& rm -rf /var/lib/apt/lists/*
|
| 18 |
|
| 19 |
# Create a non-root user (required by Hugging Face Spaces)
|