xtrans
Details
Source
FROM stagex/pallet-gcc-gnu-busybox AS build
ARG VERSION
COPY --from=stagex/user-xmlto . /
COPY --from=stagex/user-util-macros . /
ADD fetch/xtrans-${VERSION}.tar.xz .
WORKDIR /xtrans-${VERSION}
RUN --network=none <<-EOF
set -eux
./configure \
--prefix=/usr
make -j "$(nproc)"
make install DESTDIR=/rootfs
EOF
FROM stagex/core-filesystem AS package
COPY --from=build /rootfs/ /