fix: missing Bun implementation in Dockerfile
This commit is contained in:
parent
3746b55998
commit
a0017adede
1 changed files with 1 additions and 0 deletions
|
|
@ -35,6 +35,7 @@ RUN \
|
|||
if [ -f yarn.lock ]; then yarn run build; \
|
||||
elif [ -f package-lock.json ]; then npm run build; \
|
||||
elif [ -f pnpm-lock.yaml ]; then corepack enable pnpm && pnpm run build; \
|
||||
elif [ -f bun.lock ]; then corepack enable bun && bun run build; \
|
||||
else echo "Lockfile not found." && exit 1; \
|
||||
fi
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue