fix: install git and openssh in container for chart operations
Some checks failed
Build & Release / build (push) Has been cancelled

This commit is contained in:
Ryan Moon
2026-04-03 15:25:57 -05:00
parent 32e27eda51
commit a483759964

View File

@@ -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