texinfo

Details
Source
FROM scratch AS build
ARG VERSION
COPY --from=stagex/core-binutils . /
COPY --from=stagex/core-openssl . /
COPY --from=stagex/core-coreutils . /
COPY --from=stagex/core-sed . /
COPY --from=stagex/core-grep . /
COPY --from=stagex/core-tar . /
COPY --from=stagex/core-xz . /
COPY --from=stagex/core-gawk . /
COPY --from=stagex/core-musl . /
COPY --from=stagex/core-make . /
COPY --from=stagex/core-perl . /
COPY --from=stagex/core-gcc . /
COPY --from=stagex/core-diffutils . /
COPY --from=stagex/core-findutils . /
COPY --from=stagex/core-bash . /
COPY --from=stagex/core-bash . /
COPY --from=stagex/core-bash /bin/bash /bin/sh
ADD fetch/texinfo-${VERSION}.tar.xz .
WORKDIR /texinfo-${VERSION}
RUN --network=none <<-EOF
	set -ex
	./configure \
		--prefix=/usr \
		--disable-nls
	make -j "$(nproc)"
	make DESTDIR="/rootfs" install
EOF
FROM stagex/core-filesystem AS package
COPY --from=build /rootfs/ /