Initial commit

This commit is contained in:
zavolo
2026-06-05 00:53:35 +03:00
commit e59e4424a4
7686 changed files with 352420 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
FROM node:18-alpine
WORKDIR /app
# Copy package files
COPY package*.json ./
# Install dependencies
RUN npm install --omit=dev
# Copy application code
COPY . .
# Expose port
EXPOSE 3001
# Environment
ENV NODE_ENV=production
# Start server
CMD ["node", "src/server.js"]