xorriso

Source

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