From 95ffe03ec8f47ed33142f73e7f1bcc8735e7bb55 Mon Sep 17 00:00:00 2001 From: Francois Best Date: Tue, 9 Apr 2024 09:49:11 +0200 Subject: [PATCH] chore: Install git --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index f469552..c21c967 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,6 +16,8 @@ RUN pnpm install --frozen-lockfile --prod FROM node:20-slim AS final +RUN apt update && apt install -y git + COPY --from=builder /action/package.json /action/package.json COPY --from=builder /action/node_modules /action/node_modules COPY --from=builder /action/dist /action/dist