Files
bknd/docker/debug/Dockerfile.minimal

15 lines
261 B
Docker

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"]