From 051f4acecc5e2a7e7c050ad7a0bbfc7c6550d6b3 Mon Sep 17 00:00:00 2001 From: Steven Noack <147175134+MacStenk@users.noreply.github.com> Date: Thu, 11 Dec 2025 06:30:59 +0100 Subject: [PATCH] Replace npm with pnpm for dependency installation --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 1eb99be..d2ac013 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ WORKDIR /app # Copy package files and install dependencies COPY package*.json ./ -RUN npm install +RUN pnpm install # Copy application files COPY . .