first commit

This commit is contained in:
Aculix Technologies
2025-10-16 13:22:41 +05:30
commit 3c846aad7d
12 changed files with 9635 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
FROM node:20-alpine
WORKDIR /app
# Copy package files
COPY package*.json ./
# Install dependencies
RUN npm ci
# Copy source code
COPY . .
# Build the application
RUN npm run build