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

View File

@@ -67,7 +67,10 @@ export async function startServer(
$console.info("Server listening on", url); $console.info("Server listening on", url);
if (options.open) { if (options.open) {
await open(url); const p = await open(url, { wait: false });
p.on("error", () => {
$console.warn("Couldn't open url in browser");
});
} }
} }

View File

@@ -0,0 +1,14 @@
FROM alpine:latest
# Install Node.js and npm
RUN apk add --no-cache nodejs npm
# Set working directory
WORKDIR /app
# Create package.json with type: module
RUN echo '{"type":"module"}' > package.json
# Keep container running (can be overridden)
CMD ["sh"]

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