From 11c729afbf447c4989f5e99567ee6db231008521 Mon Sep 17 00:00:00 2001 From: david Date: Sat, 6 Mar 2021 22:55:20 +0100 Subject: [PATCH] fixed glibc upgrade problem --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index b5e42f8..a262272 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,8 @@ LABEL Description="This image is based on Archlinux and is used for running game # Thanks to https://github.com/lxqt/lxqt-panel/pull/1562 RUN patched_glibc=glibc-linux4-2.33-4-x86_64.pkg.tar.zst && \ curl -LO "https://repo.archlinuxcn.org/x86_64/$patched_glibc" && \ - bsdtar -C / -xvf "$patched_glibc" + bsdtar -C / -xvf "$patched_glibc" && \ + echo "IgnorePkg = glibc lib32-glibc" >> /etc/pacman.conf ENV USER_ID=1000 ENV GROUP_ID=1000 @@ -38,4 +39,4 @@ WORKDIR /home/${USERNAME} COPY entrypoint.sh /opt/ -CMD /opt/entrypoint.sh \ No newline at end of file +CMD /opt/entrypoint.sh