From fd9ba9c5aa13070554086e4dbbf48600bd7bcecf Mon Sep 17 00:00:00 2001 From: thelamer Date: Mon, 20 May 2019 15:40:37 -0700 Subject: [PATCH] we also need these args to be used for the new image ingestion endpoiont --- Dockerfile | 2 ++ Dockerfile.aarch64 | 2 ++ Dockerfile.armhf | 2 ++ 3 files changed, 6 insertions(+) diff --git a/Dockerfile b/Dockerfile index d4fd6fd..d5a1b64 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,6 +25,8 @@ RUN \ # Runtime stage FROM scratch COPY --from=rootfs-stage /root-out/ / +ARG BUILD_DATE +ARG VERSION LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}" LABEL MAINTAINER="sparkyballs,TheLamer" diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 61a139f..c103b76 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -25,6 +25,8 @@ RUN \ # Runtime stage FROM scratch COPY --from=rootfs-stage /root-out/ / +ARG BUILD_DATE +ARG VERSION LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}" LABEL MAINTAINER="sparkyballs,TheLamer" diff --git a/Dockerfile.armhf b/Dockerfile.armhf index d23db02..ed0168d 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -25,6 +25,8 @@ RUN \ # Runtime stage FROM scratch COPY --from=rootfs-stage /root-out/ / +ARG BUILD_DATE +ARG VERSION LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}" LABEL MAINTAINER="sparkyballs,TheLamer"