From ee3e6f45d56aa1290070b86fa708176170c52c81 Mon Sep 17 00:00:00 2001 From: moonrailgun Date: Sat, 24 Jun 2023 01:03:59 +0800 Subject: [PATCH] chore: add ulimit docker config --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 13affced..7de222e3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,6 +6,8 @@ ARG VERSION # Working directory WORKDIR /app/tailchat +RUN ulimit -n 10240 + # Install dependencies RUN npm install -g pnpm@8.3.1 RUN npm install -g tailchat-cli@latest