Commit 7baeb6b4 authored by DasSkelett's avatar DasSkelett

Merge branch 'fix/remove-glibc-installation' into 'master'

Remove patched glibc installation step again

See merge request DasSkelett/nginx-quic-docker!3
parents 947093d3 c55d145b
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 \
&& groupadd --gid 101 --system 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