This commit is contained in:
2026-03-23 02:09:14 +01:00
parent 705329d3c2
commit d8d46ed8e9
61 changed files with 6054 additions and 3116 deletions

18
Dockerfile Normal file
View File

@@ -0,0 +1,18 @@
# SDS CRM — Node 22 (built-in node:sqlite)
FROM node:22-bookworm-slim
WORKDIR /app
COPY package.json package-lock.json ./
RUN npm ci --omit=dev
COPY server ./server
COPY public ./public
COPY database ./database
ENV NODE_ENV=production
ENV PORT=8888
EXPOSE 8888
CMD ["node", "server/index.js"]