From d8193872a967015314ee2c2d8b1a31ce11169f55 Mon Sep 17 00:00:00 2001 From: Peter Zandbergen Date: Thu, 18 Jun 2026 11:46:45 +0200 Subject: [PATCH] Add SIGNAL_CLI_VERSION to the native and jre target --- Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Dockerfile b/Dockerfile index 8d84e8a..f4b4da8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -184,6 +184,8 @@ HEALTHCHECK --interval=20s --timeout=10s --retries=3 \ FROM base AS jre +ARG SIGNAL_CLI_VERSION + RUN dpkg-reconfigure debconf --frontend=noninteractive \ && apt-get update \ && apt-get install -y --no-install-recommends openjdk-25-jre-headless supervisor \ @@ -200,6 +202,8 @@ RUN ln -s /opt/signal-cli-${SIGNAL_CLI_VERSION}/bin/signal-cli /usr/bin/signal-c FROM base AS native +ARG SIGNAL_CLI_VERSION + RUN dpkg-reconfigure debconf --frontend=noninteractive \ && apt-get update \ && apt-get install -y --no-install-recommends supervisor \