fix: replace removed libgl1-mesa-glx with libgl1 in Dockerfile
Some checks failed
Build and push Docker image (Gitea) / build (push) Has been cancelled

This commit is contained in:
2026-09-01 20:18:00 +07:00
parent 4b5e5edf5b
commit cc16ceb582

View File

@@ -3,7 +3,7 @@ FROM python:3.10-slim
WORKDIR /app WORKDIR /app
RUN apt-get update && apt-get install -y --no-install-recommends \ RUN apt-get update && apt-get install -y --no-install-recommends \
libgl1-mesa-glx \ libgl1 \
libglib2.0-0 \ libglib2.0-0 \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*