feat: add Docker build script to package.json for containerized deployment

This commit is contained in:
Rémi 2025-01-02 19:48:15 +01:00
parent c45579221b
commit 52ba69107e

View File

@ -5,6 +5,7 @@
"scripts": {
"dev": "next dev --turbopack -p 4000",
"build": "next build",
"build:docker": "docker build --no-cache -t toogether/webapp .",
"start": "next start -p 4000",
"lint": "next lint"
},