trapexit
2 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with
36 additions and
0 deletions
-
buildtools/containerfiles/debian.13.amd64
-
buildtools/containerfiles/debian.13.arm64
-
buildtools/containerfiles/debian.13.armhf
-
buildtools/containerfiles/debian.13.i386
|
|
@ -0,0 +1,9 @@ |
|
|
|
FROM --platform=linux/amd64 debian:trixie as build |
|
|
|
COPY install-build-pkgs build-mergerfs /tmp/ |
|
|
|
RUN /tmp/install-build-pkgs |
|
|
|
ARG BUILD_TIMESTAMP=0 |
|
|
|
ARG BRANCH=master |
|
|
|
RUN /tmp/build-mergerfs $BRANCH |
|
|
|
|
|
|
|
FROM scratch |
|
|
|
COPY --from=build /build/ / |
|
|
@ -0,0 +1,9 @@ |
|
|
|
FROM --platform=linux/arm64 debian:trixie as build |
|
|
|
COPY install-build-pkgs build-mergerfs /tmp/ |
|
|
|
RUN /tmp/install-build-pkgs |
|
|
|
ARG BUILD_TIMESTAMP=0 |
|
|
|
ARG BRANCH=master |
|
|
|
RUN /tmp/build-mergerfs $BRANCH |
|
|
|
|
|
|
|
FROM scratch |
|
|
|
COPY --from=build /build/ / |
|
|
@ -0,0 +1,9 @@ |
|
|
|
FROM --platform=linux/armhf debian:trixie as build |
|
|
|
COPY install-build-pkgs build-mergerfs /tmp/ |
|
|
|
RUN /tmp/install-build-pkgs |
|
|
|
ARG BUILD_TIMESTAMP=0 |
|
|
|
ARG BRANCH=master |
|
|
|
RUN /tmp/build-mergerfs $BRANCH |
|
|
|
|
|
|
|
FROM scratch |
|
|
|
COPY --from=build /build/ / |
|
|
@ -0,0 +1,9 @@ |
|
|
|
FROM --platform=linux/i386 debian:trixie as build |
|
|
|
COPY install-build-pkgs build-mergerfs /tmp/ |
|
|
|
RUN /tmp/install-build-pkgs |
|
|
|
ARG BUILD_TIMESTAMP=0 |
|
|
|
ARG BRANCH=master |
|
|
|
RUN /tmp/build-mergerfs $BRANCH |
|
|
|
|
|
|
|
FROM scratch |
|
|
|
COPY --from=build /build/ / |