From 27f53b252d3700fe6e667dc58bd2b107642c7dc7 Mon Sep 17 00:00:00 2001 From: kittapath <> Date: Mon, 15 Sep 2025 22:32:13 +0700 Subject: [PATCH] use npm install --- docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 07492be..3c7b03d 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -7,7 +7,7 @@ WORKDIR /app # Install app dependencies COPY package*.json ./ -RUN npm ci +RUN npm install # Copy source files and build the app COPY . .