fix: correct malformed next dev startup command in Docker
Build and Publish Mana Loop Docker Image / build-and-publish (push) Successful in 10m5s
Build and Publish Mana Loop Docker Image / build-and-publish (push) Successful in 10m5s
This commit is contained in:
+1
-1
@@ -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
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user