stagex/packages/zig/Containerfile

42 lines
1.1 KiB
Text
Raw Normal View History

2024-08-08 07:47:42 +00:00
FROM scratch AS base
2024-09-13 06:48:23 +00:00
ENV VERSION=0.13.0
ENV SRC_HASH=06c73596beeccb71cc073805bdb9c0e05764128f16478fa53bf17dfabc1d4318
2024-02-27 23:08:15 +00:00
ENV SRC_FILE=zig-${VERSION}.tar.xz
ENV SRC_SITE=https://ziglang.org/download/${VERSION}/${SRC_FILE}
2024-08-08 07:47:42 +00:00
FROM base AS fetch
2024-02-27 23:08:15 +00:00
ADD --checksum=sha256:${SRC_HASH} ${SRC_SITE} .
2024-08-08 07:47:42 +00:00
FROM fetch AS build
2024-02-27 23:08:15 +00:00
COPY --from=stagex/binutils . /
COPY --from=stagex/busybox . /
2024-08-15 13:28:07 +00:00
COPY --from=stagex/clang16 . /
2024-02-27 23:08:15 +00:00
COPY --from=stagex/cmake . /
COPY --from=stagex/gcc . /
COPY --from=stagex/libzstd . /
COPY --from=stagex/lld . /
2024-08-15 13:28:07 +00:00
COPY --from=stagex/llvm16 . /
2024-02-27 23:08:15 +00:00
COPY --from=stagex/make . /
COPY --from=stagex/musl . /
COPY --from=stagex/openssl . /
COPY --from=stagex/zlib . /
RUN --network=none tar -xf ${SRC_FILE}
2024-08-26 01:18:52 +00:00
WORKDIR /zig-${VERSION}
RUN --network=none <<-EOF
set -eux
2024-02-27 23:08:15 +00:00
cmake -Bbuild \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE=None \
-DZIG_STATIC=ON \
-DZIG_TARGET_TRIPLE=native-linux-musl \
-DZIG_TARGET_MCPU=baseline
2024-02-27 23:08:15 +00:00
cmake --build build
EOF
2024-02-27 23:08:15 +00:00
2024-08-08 07:47:42 +00:00
FROM build AS install
2024-04-11 20:09:20 +00:00
RUN --network=none DESTDIR=/rootfs cmake --install build
2024-02-27 23:08:15 +00:00
2024-08-08 07:47:42 +00:00
FROM stagex/filesystem AS package
COPY --from=install /rootfs/. /