Update Dockerfile

This commit is contained in:
Andras Bacsai
2025-11-06 11:57:56 +01:00
committed by GitHub
parent f81870fa2f
commit 20004b93bf

View File

@@ -35,7 +35,7 @@ RUN \
if [ -f yarn.lock ]; then SKIP_ENV_VALIDATION=1 yarn build; \
elif [ -f package-lock.json ]; then SKIP_ENV_VALIDATION=1 npm run build; \
elif [ -f pnpm-lock.yaml ]; then npm install -g pnpm && SKIP_ENV_VALIDATION=1 pnpm run build; \
elif [ -f bun.lock]; then bun run build; \
elif [ -f bun.lock]; then bunx prisma generate && bun run build; \
else echo "Lockfile not found." && exit 1; \
fi