first commit

This commit is contained in:
2025-07-09 01:04:18 +02:00
commit 605358e651
31 changed files with 6240 additions and 0 deletions

17
Dockerfile Normal file
View File

@@ -0,0 +1,17 @@
FROM node:lts-alpine
ENV NODE_ENV production
WORKDIR /app
COPY package*.json ./
RUN npm install --omit=dev
COPY . .
RUN npm install pm2 -g
CMD pm2 start process.yml && tail -f /dev/null
EXPOSE 3001