Browse Source

Add Ubuntu 25.10 build (#1577)

tarball-changelog
trapexit 2 days ago
committed by GitHub
parent
commit
66d120c721
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 10
      buildtools/containerfiles/ubuntu:25.10.amd64
  2. 10
      buildtools/containerfiles/ubuntu:25.10.arm64
  3. 10
      buildtools/containerfiles/ubuntu:25.10.armhf
  4. 10
      buildtools/containerfiles/ubuntu:25.10.riscv64

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

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

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

10
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/ /
Loading…
Cancel
Save