mirror of
https://github.com/shishantbiswas/bknd.git
synced 2026-03-16 12:37:20 +00:00
fix cli url opener and add minimal debug docker config
This commit is contained in:
14
docker/debug/Dockerfile.minimal
Normal file
14
docker/debug/Dockerfile.minimal
Normal 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"]
|
||||
|
||||
Reference in New Issue
Block a user