added diagnostic page

This commit is contained in:
2026-03-12 00:08:30 +01:00
parent c5d835ea09
commit dc8ff7a406
7 changed files with 670 additions and 6 deletions
+7
View File
@@ -0,0 +1,7 @@
FROM node:22-alpine
WORKDIR /app
COPY package.json ./
RUN npm install --production
COPY . .
EXPOSE 3001
CMD ["node", "server.js"]