mirror of
https://github.com/shishantbiswas/bknd.git
synced 2026-03-15 20:17:22 +00:00
fix cli url opener and add minimal debug docker config
This commit is contained in:
12
docker/debug/run-minimal.sh
Executable file
12
docker/debug/run-minimal.sh
Executable file
@@ -0,0 +1,12 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Build the minimal Alpine image with Node.js
|
||||
docker build -f Dockerfile.minimal -t bknd-minimal .
|
||||
|
||||
# Run the container with the whole app/src directory mapped
|
||||
docker run -it --rm \
|
||||
-v "$(pwd)/../app:/app/app" \
|
||||
-w /app \
|
||||
-p 1337:1337 \
|
||||
bknd-minimal
|
||||
|
||||
Reference in New Issue
Block a user