feature, not a bug

This commit is contained in:
Tejas Panchal
2026-03-01 12:39:28 +05:30
commit a6184c63d4
91 changed files with 6797 additions and 0 deletions

17
Dockerfile Normal file
View File

@@ -0,0 +1,17 @@
FROM node:20-alpine
WORKDIR /app
# Install system dependencies
RUN apk add --no-cache git netcat-openbsd
# Copy package files
COPY package.json ./
RUN npm install
# Copy the rest
COPY . .
# Start app
CMD ["npm", "start"]