trapexit
1 month ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with
44 additions and
0 deletions
-
buildtools/containerfiles/ubuntu:25.04.amd64
-
buildtools/containerfiles/ubuntu:25.04.arm64
-
buildtools/containerfiles/ubuntu:25.04.armhf
-
buildtools/containerfiles/ubuntu:25.04.riscv64
-
buildtools/target-containers.txt
|
|
@ -0,0 +1,10 @@ |
|
|
|
FROM --platform=amd64 ubuntu:25.04 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.04 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.04 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.04 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/ / |
|
|
@ -33,3 +33,7 @@ ubuntu:24.04 amd64 |
|
|
|
ubuntu:24.04 arm64 |
|
|
|
ubuntu:24.04 armhf |
|
|
|
ubuntu:24.04 riscv64 |
|
|
|
ubuntu:25.04 amd64 |
|
|
|
ubuntu:25.04 arm64 |
|
|
|
ubuntu:25.04 armhf |
|
|
|
ubuntu:25.04 riscv64 |