mirror of
https://github.com/rwengine/openrw.git
synced 2025-04-28 21:08:05 +03:00
Work around old Docker systems breaking Arch
This commit is contained in:
parent
986251155c
commit
0806c01fe6
1 changed files with 8 additions and 0 deletions
|
@ -1,5 +1,13 @@
|
||||||
FROM archlinux:base
|
FROM archlinux:base
|
||||||
|
|
||||||
|
# Work-around the issue with glibc 2.33 on old Docker engines
|
||||||
|
# Extract files directly as pacman is also affected by the issue
|
||||||
|
# https://github.com/lxqt/lxqt-panel/pull/1562 and
|
||||||
|
# https://github.com/actions/virtual-environments/issues/2658
|
||||||
|
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 / -xf $patched_glibc
|
||||||
|
|
||||||
RUN pacman -Syy --noconfirm \
|
RUN pacman -Syy --noconfirm \
|
||||||
core/gcc \
|
core/gcc \
|
||||||
extra/llvm \
|
extra/llvm \
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue