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