From cbf1bcc57053c63c3b07d0fb03ae3c9bb10839b4 Mon Sep 17 00:00:00 2001 From: "CHAN, Chak Shing" Date: Wed, 29 Jun 2022 20:53:38 +0800 Subject: [PATCH] fix: add git when building docker image --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 75c7d4abb..dddbc93a6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,7 @@ COPY ./package.json package.json COPY ./yarn.lock yarn.lock COPY ./prisma/schema.prisma prisma/schema.prisma -RUN apk add --no-cache python3 g++ make openssl +RUN apk add --no-cache python3 g++ make openssl git RUN yarn install # See https://github.com/nrwl/nx/issues/6586 for further details