commit fbbd80a9dac703fa3cb340f07fb079636f20ac87
parent 98f8fa75fe32c0d74e4b772b81412d01db062b83
Author: Matthias Jaros <jaros@mailbox.org>
Date: Wed, 29 Oct 2025 21:04:41 +0100
Test
Diffstat:
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/Dockerfile b/Dockerfile
@@ -1,4 +1,3 @@
-ARG APP_VERSION
ARG BASE_IMAGE=alpine:latest
FROM ${BASE_IMAGE}
@@ -25,6 +24,8 @@ COPY src/version /usr/local/bin/
ENTRYPOINT ["/usr/local/bin/init"]
+ARG APP_VERSION
+
# license information
LABEL org.opencontainers.image.licenses="GPL-3.0-or-later"
LABEL org.opencontainers.image.authors="Matthias Jaros"