Feat: flesh out

This commit is contained in:
2026-03-14 14:42:40 +01:00
parent 5e7eae22e9
commit b569cfd5ad
6 changed files with 319 additions and 0 deletions

7
web/Dockerfile Normal file
View File

@@ -0,0 +1,7 @@
FROM node:22-slim
WORKDIR /app
COPY package.json .
RUN npm install --production
COPY server.js index.html .
EXPOSE 3000
CMD ["node", "server.js"]