Added migration docker image
All checks were successful
Build & Push / build (push) Successful in 3m45s

This commit is contained in:
Caesar2011
2026-05-17 23:04:15 +02:00
parent b90038ea4c
commit 8f200514b1
4 changed files with 63 additions and 8 deletions

10
web/Dockerfile.migrate Normal file
View File

@@ -0,0 +1,10 @@
FROM node:24-alpine
WORKDIR /app
COPY package.json package-lock.json* ./
RUN npm ci
COPY migrations/ ./migrations/
CMD ["npm", "run", "migrate"]