fix: update Docker build script to remove no-cache option for improved performance

This commit is contained in:
Rémi 2025-01-02 19:54:21 +01:00
parent 52ba69107e
commit 482b43eaf4

View File

@ -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"
},