fix: use npx --yes tsx in Dockerfile to prevent hang
Deploy API / deploy (push) Failing after 15s

This commit is contained in:
2026-04-26 21:21:48 +02:00
parent 0acc9f6097
commit 26619850ff
+1 -1
View File
@@ -5,4 +5,4 @@ RUN npm install
COPY . .
RUN npx prisma generate --schema=schema.prisma
EXPOSE 3000
CMD ["npx", "tsx", "devV1-Seed/server.ts"]
CMD ["npx", "--yes", "tsx", "devV1-Seed/server.ts"]