fix cli url opener and add minimal debug docker config

This commit is contained in:
dswbx
2025-11-20 20:04:13 +01:00
parent 5ce22162c3
commit fdee39da62
3 changed files with 30 additions and 1 deletions

12
docker/debug/run-minimal.sh Executable file
View 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