From 7bad3ecfe791fa4311d2619485618a9f461e9d26 Mon Sep 17 00:00:00 2001 From: honjow Date: Fri, 14 Feb 2025 16:52:31 +0800 Subject: [PATCH] dockerfile: remove lib32-mesa mesa --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index bc62d7f9d..39fc9ca44 100644 --- a/Dockerfile +++ b/Dockerfile @@ -59,6 +59,8 @@ RUN source /manifest && \ /etc/pacman.d/mirrorlist && \ pacman --noconfirm -Syyuu; if [ -n "${PACKAGE_OVERRIDES}" ]; then wget --directory-prefix=/tmp/extra_pkgs ${PACKAGE_OVERRIDES}; pacman --noconfirm -U --overwrite '*' /tmp/extra_pkgs/*; rm -rf /tmp/extra_pkgs; fi +RUN pacman --noconfirm -Rns lib32-mesa mesa + USER build ENV BUILD_USER "build" ENV GNUPGHOME "/etc/pacman.d/gnupg"