numactl

Source

FROM stagex/pallet-clang-gnu-busybox AS build
COPY --from=stagex/user-gperf . /
ARG VERSION
ADD fetch/numactl-${VERSION}.tar.gz .
WORKDIR /numactl-${VERSION}
RUN --network=none <<EOF
	./configure \
		--prefix=/usr \
		--mandir=/usr/share/man
	make
	DESTDIR=/rootfs make install
EOF
FROM stagex/core-filesystem AS package
COPY --from=build /rootfs/ /
Copied to clipboard!