From 2072363c1a04b5245f62e12fc7998bf514fa9372 Mon Sep 17 00:00:00 2001 From: Andreas Doebeli Date: Wed, 19 Aug 2026 00:40:57 +0200 Subject: [PATCH] Add envsubst dependency to commodore image --- Dockerfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Dockerfile b/Dockerfile index 8553ff80e..f6964a745 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,6 +14,7 @@ FROM base AS builder ENV PATH=${PATH}:${HOME}/.local/bin:/usr/local/go/bin ARG POETRY_VERSION=2.4.1 +ARG ENVSUBST_VERSION=v1.4.3 RUN apt-get update && apt-get install -y --no-install-recommends \ build-essential \ curl \ @@ -21,6 +22,9 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ libffi-dev \ && rm -rf /var/lib/apt/lists/* \ && curl -sSL https://install.python-poetry.org | python - --version ${POETRY_VERSION} \ + && curl -L https://github.com/a8m/envsubst/releases/download/${ENVSUBST_VERSION}/envsubst-`uname -s`-`uname -m` -o envsubst \ + && chmod +x envsubst \ + && mv envsubst /usr/local/bin/ \ && mkdir -p /app/.config COPY --from=golang /usr/local/go /usr/local/go @@ -69,6 +73,7 @@ COPY --from=builder \ COPY --from=builder \ /usr/local/bin/kapitan* \ /usr/local/bin/commodore* \ + /usr/local/bin/envsubst \ /usr/local/bin/ COPY --from=builder \