From a483759964a8623f21165b01783bd93a5cf3a33f Mon Sep 17 00:00:00 2001 From: Ryan Moon Date: Fri, 3 Apr 2026 15:25:57 -0500 Subject: [PATCH] fix: install git and openssh in container for chart operations --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 5e1a796..161b0aa 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,6 +6,7 @@ COPY package.json bun.lock* ./ RUN bun install --frozen-lockfile --production FROM base +RUN apt-get update && apt-get install -y git openssh-client && rm -rf /var/lib/apt/lists/* COPY --from=install /app/node_modules ./node_modules COPY src ./src COPY frontend ./frontend