first commit

This commit is contained in:
2026-03-23 20:11:18 +01:00
commit 4c2df27527
13 changed files with 2049 additions and 0 deletions

13
Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
FROM node:20-slim
WORKDIR /app
COPY package*.json ./
RUN npm ci --only=production
COPY dist ./dist
# Persistent data directory
VOLUME ["/app/data"]
CMD ["node", "dist/index.js"]