From 5a781b6cc6b83215b78b110ce1771af95e2f6251 Mon Sep 17 00:00:00 2001 From: thelamer Date: Mon, 20 May 2019 15:38:23 -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 0e97349..3c1b660 100644 --- a/Dockerfile +++ b/Dockerfile @@ -37,6 +37,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 f78977c..f2ed339 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -37,6 +37,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 5070ba6..461582f 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -37,6 +37,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"