79372154

Date: 2025-01-20 17:20:52
Score: 0.5
Natty:
Report link

The problem had to do with missing OpenGL modules in the Debian environment.

Adding this:

libgl1 \
libglib2.0-0 \

in the Dockerfile solved the problem

RUN apt-get update && apt-get install -y \
    libgl1 \
    libglib2.0-0 \
    libcairo2 \
    libpango1.0-0 \
    libgdk-pixbuf2.0-0 \
    shared-mime-info \
    libgirepository1.0-dev \
    gir1.2-pango-1.0 \
    gir1.2-gdkpixbuf-2.0 \
    gir1.2-cairo-1.0 \
    python3-gi \
    python3-cairo \
    git \
    build-essential \
    curl \
    && rm -rf /var/lib/apt/lists/*
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Wonjae Oh