SemSorter commited on
Commit
0f9a8f0
·
1 Parent(s): 693a18a

Fix Render deployment: Add libopengl0 and PyOpenGL-accelerate

Browse files
Files changed (2) hide show
  1. Dockerfile +2 -0
  2. requirements-server.txt +1 -0
Dockerfile CHANGED
@@ -9,8 +9,10 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
9
  libglvnd0 \
10
  libglx0 \
11
  libx11-6 \
 
12
  wget \
13
  git \
 
14
  && rm -rf /var/lib/apt/lists/*
15
 
16
  # ── Create working directory ──────────────────────────────────────────────────
 
9
  libglvnd0 \
10
  libglx0 \
11
  libx11-6 \
12
+ libopengl0 \
13
  wget \
14
  git \
15
+ && apt-get clean \
16
  && rm -rf /var/lib/apt/lists/*
17
 
18
  # ── Create working directory ──────────────────────────────────────────────────
requirements-server.txt CHANGED
@@ -9,6 +9,7 @@ numpy==1.26.4
9
 
10
  # MuJoCo (headless, EGL)
11
  mujoco==3.5.0
 
12
 
13
  # Google Gemini (legacy + new SDK — both used for compatibility)
14
  google-generativeai==0.8.3
 
9
 
10
  # MuJoCo (headless, EGL)
11
  mujoco==3.5.0
12
+ PyOpenGL-accelerate==3.1.7
13
 
14
  # Google Gemini (legacy + new SDK — both used for compatibility)
15
  google-generativeai==0.8.3