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/ /