From 66d120c721df3e1ac8d75813f2b9a6562128e00d Mon Sep 17 00:00:00 2001 From: trapexit Date: Sun, 16 Nov 2025 22:30:32 -0600 Subject: [PATCH] Add Ubuntu 25.10 build (#1577) --- buildtools/containerfiles/ubuntu:25.10.amd64 | 10 ++++++++++ buildtools/containerfiles/ubuntu:25.10.arm64 | 10 ++++++++++ buildtools/containerfiles/ubuntu:25.10.armhf | 10 ++++++++++ buildtools/containerfiles/ubuntu:25.10.riscv64 | 10 ++++++++++ 4 files changed, 40 insertions(+) create mode 100644 buildtools/containerfiles/ubuntu:25.10.amd64 create mode 100644 buildtools/containerfiles/ubuntu:25.10.arm64 create mode 100644 buildtools/containerfiles/ubuntu:25.10.armhf create mode 100644 buildtools/containerfiles/ubuntu:25.10.riscv64 diff --git a/buildtools/containerfiles/ubuntu:25.10.amd64 b/buildtools/containerfiles/ubuntu:25.10.amd64 new file mode 100644 index 00000000..991ee604 --- /dev/null +++ b/buildtools/containerfiles/ubuntu:25.10.amd64 @@ -0,0 +1,10 @@ +FROM --platform=amd64 ubuntu:25.10 as build +COPY install-build-pkgs build-mergerfs /tmp/ +RUN /tmp/install-build-pkgs +ARG BUILD_TIMESTAMP=0 +ARG GIT_REPO +ARG BRANCH +RUN /tmp/build-mergerfs $GIT_REPO $BRANCH + +FROM scratch +COPY --from=build /build/ / diff --git a/buildtools/containerfiles/ubuntu:25.10.arm64 b/buildtools/containerfiles/ubuntu:25.10.arm64 new file mode 100644 index 00000000..e13500f4 --- /dev/null +++ b/buildtools/containerfiles/ubuntu:25.10.arm64 @@ -0,0 +1,10 @@ +FROM --platform=arm64 ubuntu:25.10 as build +COPY install-build-pkgs build-mergerfs /tmp/ +RUN /tmp/install-build-pkgs +ARG BUILD_TIMESTAMP=0 +ARG GIT_REPO +ARG BRANCH +RUN /tmp/build-mergerfs $GIT_REPO $BRANCH + +FROM scratch +COPY --from=build /build/ / diff --git a/buildtools/containerfiles/ubuntu:25.10.armhf b/buildtools/containerfiles/ubuntu:25.10.armhf new file mode 100644 index 00000000..73180567 --- /dev/null +++ b/buildtools/containerfiles/ubuntu:25.10.armhf @@ -0,0 +1,10 @@ +FROM --platform=armhf ubuntu:25.10 as build +COPY install-build-pkgs build-mergerfs /tmp/ +RUN /tmp/install-build-pkgs +ARG BUILD_TIMESTAMP=0 +ARG GIT_REPO +ARG BRANCH +RUN /tmp/build-mergerfs $GIT_REPO $BRANCH + +FROM scratch +COPY --from=build /build/ / diff --git a/buildtools/containerfiles/ubuntu:25.10.riscv64 b/buildtools/containerfiles/ubuntu:25.10.riscv64 new file mode 100644 index 00000000..41fbab9b --- /dev/null +++ b/buildtools/containerfiles/ubuntu:25.10.riscv64 @@ -0,0 +1,10 @@ +FROM --platform=riscv64 ubuntu:25.10 as build +COPY install-build-pkgs build-mergerfs /tmp/ +RUN /tmp/install-build-pkgs +ARG BUILD_TIMESTAMP=0 +ARG GIT_REPO +ARG BRANCH +RUN /tmp/build-mergerfs $GIT_REPO $BRANCH + +FROM scratch +COPY --from=build /build/ /