initial commit

This commit is contained in:
2026-06-16 13:22:27 +02:00
commit 863c46bb05
10 changed files with 852 additions and 0 deletions

12
rebuild-hook/Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM node:lts-alpine
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
RUN npm run build
CMD ["npm", "run", "start"]