initial commit

This commit is contained in:
2026-02-28 19:44:58 +01:00
commit c1fbcdf6b1
13 changed files with 2422 additions and 0 deletions

7
Dockerfile Normal file
View File

@@ -0,0 +1,7 @@
FROM node:22-alpine
WORKDIR /app
COPY package*.json ./
RUN npm ci --production
COPY src/ ./src/
EXPOSE 8083
CMD ["node", "src/server.js"]