FROM debian:bookworm-slim@sha256:2424c1850714a4d94666ec928e24d86de958646737b1d113f5b2207be44d37d8 AS builder RUN apt-get update RUN apt-get install -y build-essential autoconf libxml2-dev libssl-dev zlib1g-dev curl git # Build bomutils RUN git clone -b master \ --no-tags --progress \ --no-recurse-submodules https://github.com/hogliux/bomutils.git && \ cd bomutils && git reset --hard c41ad8b67d82a0071245ce8a5069023d39a885b8 && \ make && make install # Install xar RUN curl -L https://github.com/mackyle/xar/archive/refs/tags/xar-1.6.1.tar.gz > xar.tar.gz && \ echo "5e7d50dab73f5cb1713b49fa67c455c2a0dd2b0a7770cbc81b675e21f6210e25 xar.tar.gz" | sha256sum --check && \ tar -xzf xar.tar.gz # Note this needs patching due to newer version of OpenSSL # See https://github.com/mackyle/xar/pull/23 COPY patch.txt . RUN cd xar-xar-1.6.1/xar && patch < ../../patch.txt && autoconf && ./configure && make && make install FROM debian:bookworm-slim@sha256:2424c1850714a4d94666ec928e24d86de958646737b1d113f5b2207be44d37d8 RUN apt-get update && dpkg --add-architecture i386 && apt-get upgrade -y && apt-get install -y --no-install-recommends libxml2 ca-certificates && rm -rf /var/lib/apt/lists/* COPY --from=builder /usr/bin /usr/bin/ COPY --from=builder /usr/local/bin /usr/local/bin/ COPY --from=builder /usr/local/lib /usr/local/lib/