trapexit
2 days ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with
40 additions and
0 deletions
-
buildtools/containerfiles/ubuntu:25.10.amd64
-
buildtools/containerfiles/ubuntu:25.10.arm64
-
buildtools/containerfiles/ubuntu:25.10.armhf
-
buildtools/containerfiles/ubuntu:25.10.riscv64
|
|
|
@ -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/ / |
|
|
|
@ -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/ / |
|
|
|
@ -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/ / |
|
|
|
@ -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/ / |