numactl

Details
Source
FROM stagex/pallet-gcc-gnu-busybox AS build
ARG VERSION
COPY --from=stagex/user-gperf . /
ADD fetch/numactl-${VERSION}.tar.gz .
WORKDIR /numactl-${VERSION}
RUN --network=none <<EOF
	set -eux
	./configure \
		--prefix=/usr \
		--mandir=/usr/share/man
	make -j "$(nproc)"
	DESTDIR=/rootfs make install
EOF
FROM stagex/core-filesystem AS package
COPY --from=build /rootfs/ /