Skip to content

Commit ce3a798

Browse files
Fix: dockerbuild script stage names in package.json
1 parent cb3c536 commit ce3a798

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
"start": "node -e \"const { spawn } = require('child_process'); const isWindows = process.platform === 'win32'; const cmd = isWindows ? 'npm run start:windows' : 'npm run start:unix'; const child = spawn(cmd, { shell: true, stdio: 'inherit' }); child.on('exit', code => process.exit(code));\"",
2424
"dockerstart": "bindings=$(./bindings.sh) && wrangler pages dev ./build/client $bindings --ip 0.0.0.0 --port 5173 --no-show-interactive-dev-session",
2525
"dockerrun": "docker run -it -d --name bolt-ai-live -p 5173:5173 --env-file .env.local bolt-ai",
26-
"dockerbuild:prod": "docker build -t bolt-ai:production -t bolt-ai:latest --target bolt-ai-production .",
27-
"dockerbuild": "docker build -t bolt-ai:development -t bolt-ai:latest --target bolt-ai-development .",
26+
"dockerbuild:prod": "docker build -t bolt-ai:production -t bolt-ai:latest --target production .",
27+
"dockerbuild": "docker build -t bolt-ai:development -t bolt-ai:latest --target development .",
2828
"typecheck": "tsc",
2929
"typegen": "wrangler types",
3030
"preview": "pnpm run build && pnpm run start",

0 commit comments

Comments
 (0)