From b3694ad73e57e3f31607fb04f9bcce358dae85db Mon Sep 17 00:00:00 2001 From: DIYgod Date: Sun, 9 Oct 2022 01:38:06 +0100 Subject: [PATCH] chore: fix missing git cli --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d81a9cb5..0afcd185 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ ##### BASE FROM node:16-bullseye-slim as base -RUN apt-get update || : && apt-get install python3 build-essential -y +RUN apt-get update || : && apt-get install python3 build-essential git -y RUN npm i -g pnpm