From 41c97e5f12f0d64fbd90e15cea2f65e4e9fb93d6 Mon Sep 17 00:00:00 2001 From: kittapath <> Date: Mon, 15 Sep 2025 22:50:17 +0700 Subject: [PATCH] RUN npm install --production --- docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 3c7b03d..36fe569 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -27,7 +27,7 @@ COPY --from=build-stage /app/dist ./dist # Install only production dependencies COPY package*.json ./ -RUN npm ci --production +RUN npm install --production # Define the entrypoint and default command # If you have a custom entrypoint script