Commit c55d145b authored by DasSkelett's avatar DasSkelett

Remove patched glibc installation step again

The base image should have the new version (2.33-4) installed now.
parent 947093d3
FROM archlinux:base-devel FROM archlinux:base-devel
# Manually install patched glibc to workaround new system calls not known to Docker/runc
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"
RUN set -x \ RUN set -x \
&& groupadd --gid 101 --system nginx \ && groupadd --gid 101 --system nginx \
&& useradd --uid 101 --gid nginx --system --create-home --home-dir /var/cache/nginx --shell /sbin/nologin nginx \ && useradd --uid 101 --gid nginx --system --create-home --home-dir /var/cache/nginx --shell /sbin/nologin nginx \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment