fix: correct malformed next dev startup command in Docker
Build and Publish Mana Loop Docker Image / build-and-publish (push) Successful in 10m5s

This commit is contained in:
Refactoring Agent
2026-05-05 00:34:08 +02:00
parent 338ac19628
commit d0738441f3
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -36,4 +36,4 @@ HEALTHCHECK --interval=30s --timeout=10s --start-period=5s --retries=3 \
CMD wget --no-verbose --tries=1 --spider http://localhost:3000 || exit 1
# Use development server (next dev) for better error messages and HMR
CMD ["bun", "run", "dev", "--", "-p", "3000", "--", "--hostname", "0.0.0.0"]
CMD ["bun", "run", "dev"]
+1 -1
View File
@@ -3,7 +3,7 @@
"version": "0.2.0",
"private": true,
"scripts": {
"dev": "next dev -p 3000 2>&1 | tee dev.log",
"dev": "next dev -p 3000 --hostname 0.0.0.0 2>&1 | tee dev.log",
"build": "next build && cp -r .next/static .next/standalone/.next/ && cp -r public .next/standalone/",
"start": "NODE_ENV=production bun .next/standalone/server.js 2>&1 | tee server.log",
"typecheck": "tsc --noEmit",