first commit

This commit is contained in:
Myk
2025-07-31 23:47:20 +03:00
commit 2186b278a0
5149 changed files with 537218 additions and 0 deletions

18
Dockerfile Normal file
View File

@@ -0,0 +1,18 @@
# Use official Node.js LTS base image
FROM node:20-slim
# Create app directory
WORKDIR /usr/src/app
# Install dependencies
COPY package*.json ./
RUN npm ci --omit=dev
# Copy app source
COPY . .
# Expose app port (change if needed)
# EXPOSE 3000
# Start app
CMD ["node", "index.js"]