David Ko commited on
Commit
e89ea76
·
1 Parent(s): ceaf5b4

Fix: Replace libgl1-mesa-glx with libgl1 for compatibility with latest Debian

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -6,7 +6,7 @@ WORKDIR /app
6
  RUN apt-get update && apt-get install -y \
7
  build-essential \
8
  git \
9
- libgl1-mesa-glx \
10
  libglib2.0-0 \
11
  wget \
12
  && rm -rf /var/lib/apt/lists/*
 
6
  RUN apt-get update && apt-get install -y \
7
  build-essential \
8
  git \
9
+ libgl1 \
10
  libglib2.0-0 \
11
  wget \
12
  && rm -rf /var/lib/apt/lists/*