File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ FROM --platform=amd64 ubuntu:25.04 as build
2+ COPY install-build-pkgs build-mergerfs /tmp/
3+ RUN /tmp/install-build-pkgs
4+ ARG BUILD_TIMESTAMP=0
5+ ARG GIT_REPO
6+ ARG BRANCH
7+ RUN /tmp/build-mergerfs $GIT_REPO $BRANCH
8+
9+ FROM scratch
10+ COPY --from=build /build/ /
Original file line number Diff line number Diff line change 1+ FROM --platform=arm64 ubuntu:25.04 as build
2+ COPY install-build-pkgs build-mergerfs /tmp/
3+ RUN /tmp/install-build-pkgs
4+ ARG BUILD_TIMESTAMP=0
5+ ARG GIT_REPO
6+ ARG BRANCH
7+ RUN /tmp/build-mergerfs $GIT_REPO $BRANCH
8+
9+ FROM scratch
10+ COPY --from=build /build/ /
Original file line number Diff line number Diff line change 1+ FROM --platform=armhf ubuntu:25.04 as build
2+ COPY install-build-pkgs build-mergerfs /tmp/
3+ RUN /tmp/install-build-pkgs
4+ ARG BUILD_TIMESTAMP=0
5+ ARG GIT_REPO
6+ ARG BRANCH
7+ RUN /tmp/build-mergerfs $GIT_REPO $BRANCH
8+
9+ FROM scratch
10+ COPY --from=build /build/ /
Original file line number Diff line number Diff line change 1+ FROM --platform=riscv64 ubuntu:25.04 as build
2+ COPY install-build-pkgs build-mergerfs /tmp/
3+ RUN /tmp/install-build-pkgs
4+ ARG BUILD_TIMESTAMP=0
5+ ARG GIT_REPO
6+ ARG BRANCH
7+ RUN /tmp/build-mergerfs $GIT_REPO $BRANCH
8+
9+ FROM scratch
10+ COPY --from=build /build/ /
Original file line number Diff line number Diff line change @@ -33,3 +33,7 @@ ubuntu:24.04 amd64
3333ubuntu:24.04 arm64
3434ubuntu:24.04 armhf
3535ubuntu:24.04 riscv64
36+ ubuntu:25.04 amd64
37+ ubuntu:25.04 arm64
38+ ubuntu:25.04 armhf
39+ ubuntu:25.04 riscv64
You can’t perform that action at this time.
0 commit comments