Source

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