From f38458b716f1feea089b1bfb79a42af09ecd430f Mon Sep 17 00:00:00 2001 From: thelamer <ryankuba@gmail.com> Date: Mon, 20 May 2019 15:41:39 -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 eed4969..3aa6936 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 b136849..9ff3705 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 b5e1de1..4d1f182 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" -- GitLab