fix: remove deprecated --skip-generate flag from Prisma db push
Release / release (push) Successful in 4s
Lint & Test / lint-and-check (push) Failing after 5m1s
Lint & Test / test (push) Has been skipped
Release / docker (push) Successful in 1m0s

This commit is contained in:
2026-04-10 20:31:24 +03:00
parent 32b874f4a3
commit 85b4576991
+1 -1
View File
@@ -37,4 +37,4 @@ EXPOSE 3000
HEALTHCHECK --interval=30s --timeout=5s --start-period=10s --retries=3 \
CMD wget -qO- http://localhost:3000/api/health || exit 1
CMD ["sh", "-c", "npx prisma migrate deploy 2>/dev/null || npx prisma db push --skip-generate && node build"]
CMD ["sh", "-c", "npx prisma migrate deploy 2>/dev/null || npx prisma db push && node build"]