From 6380cd16c97dd22accd35935f537ed8822336e82 Mon Sep 17 00:00:00 2001 From: Jo Date: Sun, 26 Nov 2023 01:21:01 +0100 Subject: [PATCH] fix: build using npm, not pnpm --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0a28487..8496da5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,8 +8,7 @@ WORKDIR /usr/src/app # Copy package.json and package-lock.json to the working directory COPY package*.json ./ -RUN npm install pnpm -RUN pnpm install +RUN npm install COPY . .