From 7998cf8f556c3ae04e768e31511428aa71930731 Mon Sep 17 00:00:00 2001
From: scambier <simon.cambier@protonmail.com>
Date: Thu, 12 Dec 2024 13:25:58 +0100
Subject: [PATCH] Update Dofckerfile sveltekit node.md

---
 Dofckerfile sveltekit node.md | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/Dofckerfile sveltekit node.md b/Dofckerfile sveltekit node.md
index df5584e..9648201 100644
--- a/Dofckerfile sveltekit node.md	
+++ b/Dofckerfile sveltekit node.md	
@@ -15,11 +15,10 @@ COPY pnpm-lock.yaml ./
 RUN pnpm fetch
 
 COPY . .
-# Install production dependencies
-RUN pnpm install -r --offline --prod --frozen-lockfile
+RUN pnpm install --offline --prod --frozen-lockfile
 
-# Install dev dependencies (needed for the build step)
-RUN pnpm install -r --offline --frozen-lockfile
+# Install dev dependencies
+RUN pnpm install --offline --frozen-lockfile
 
 # Build
 ENV NODE_ENV=production