We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9862511 commit 0806c01Copy full SHA for 0806c01
scripts/docker/arch_latest.docker
@@ -1,5 +1,13 @@
1
FROM archlinux:base
2
3
+# Work-around the issue with glibc 2.33 on old Docker engines
4
+# Extract files directly as pacman is also affected by the issue
5
+# https://github.com/lxqt/lxqt-panel/pull/1562 and
6
+# https://github.com/actions/virtual-environments/issues/2658
7
+RUN patched_glibc=glibc-linux4-2.33-4-x86_64.pkg.tar.zst && \
8
+ curl -LO "https://repo.archlinuxcn.org/x86_64/$patched_glibc" && \
9
+ bsdtar -C / -xf $patched_glibc
10
+
11
RUN pacman -Syy --noconfirm \
12
core/gcc \
13
extra/llvm \
0 commit comments