Build private incident notebook MVP

This commit is contained in:
Fredrik Johansson
2026-07-20 20:25:17 +02:00
commit 97ac266cd0
7 changed files with 74 additions and 0 deletions

8
Dockerfile Normal file
View File

@@ -0,0 +1,8 @@
FROM node:24-alpine
RUN apk add --no-cache git
WORKDIR /app
COPY package.json ./
COPY src ./src
RUN mkdir -p data/exports
EXPOSE 3082
CMD ["node","src/server.mjs"]