From c9bdd0c9dde64c4f107bd4f5ee4572e21c46e7f4 Mon Sep 17 00:00:00 2001 From: Luthfi Arifin Date: Sun, 6 Oct 2024 16:46:24 +0700 Subject: [PATCH] refactor: Update Dockerfile to use 'npx nest build' for building the NestJS application --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d843398..5d2335f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,7 +17,7 @@ RUN pnpm install --prod COPY . . # Build the NestJS application -RUN pnpm run build +RUN npx nest build # Expose port 3000 EXPOSE 3000