From 7552dcf42d3e47fb5a77588eb617414c0acbf9cb Mon Sep 17 00:00:00 2001 From: pi-farm Date: Thu, 12 Feb 2026 15:23:18 +0100 Subject: [PATCH] add ARGs to Dockerfiles 2nd stage --- Dockerfile | 1 + Dockerfile.aarch64 | 2 ++ 2 files changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index c2730a9..8139311 100644 --- a/Dockerfile +++ b/Dockerfile @@ -46,6 +46,7 @@ RUN tar -C /root-out -Jxpf /tmp/s6-overlay-symlinks-arch.tar.xz # Runtime stage FROM scratch COPY --from=rootfs-stage /root-out/ / + ARG BUILD_DATE ARG VERSION ARG MODS_VERSION="v3" diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 47f68fc..da14a7a 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -46,6 +46,8 @@ RUN tar -C /root-out -Jxpf /tmp/s6-overlay-symlinks-arch.tar.xz # Runtime stage FROM scratch COPY --from=rootfs-stage /root-out/ / +ARG MAINTAINER +ARG APP_VERSION ARG BUILD_DATE ARG VERSION ARG MODS_VERSION="v3"