yaml

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