This commit is contained in:
2026-06-24 15:57:01 +02:00
commit cc568081d2
19 changed files with 3212 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
FROM node:24.7.0-trixie-slim
WORKDIR /usr/src/app
COPY . .
RUN npm install
CMD npm run migrate && npm run start