From 02d368df053aaa21586c857b5d1696932089f1ff Mon Sep 17 00:00:00 2001 From: kairi003 Date: Sun, 10 Nov 2024 01:58:29 +0900 Subject: [PATCH] chore: relax git version constraint in Dockerfile to allow patch updates --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 7be53d24e..fa8c467ad 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ USER 0:0 RUN corepack enable \ && corepack enable pnpm -RUN apk add --no-cache git~=2.43.4 \ +RUN apk add --no-cache git~=2.43 \ && git config --add --system safe.directory /mermaid ENV NODE_OPTIONS="--max_old_space_size=8192"