From 482b43eaf450449283030e6a7e77d76fae7a43cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi?= Date: Thu, 2 Jan 2025 19:54:21 +0100 Subject: [PATCH] fix: update Docker build script to remove no-cache option for improved performance --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index a2329fb..0ee888e 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "scripts": { "dev": "next dev --turbopack -p 4000", "build": "next build", - "build:docker": "docker build --no-cache -t toogether/webapp .", + "build:docker": "docker build -t toogether/webapp .", "start": "next start -p 4000", "lint": "next lint" },