mirror of
https://github.com/shishantbiswas/bknd.git
synced 2026-03-15 20:17:22 +00:00
15 lines
261 B
Docker
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"]
|
|
|