chore: replace pnpm with bun across the project

This commit is contained in:
2026-02-26 13:41:13 -06:00
parent e9e3451c2d
commit f86ab35b32
7 changed files with 34 additions and 6336 deletions
+4 -5
View File
@@ -1,16 +1,15 @@
FROM node:22-alpine AS base
FROM oven/bun:latest AS base
RUN corepack enable && corepack prepare pnpm@latest --activate
WORKDIR /app
# Install dependencies
COPY package.json pnpm-lock.yaml ./
COPY package.json bun.lock ./
COPY patches ./patches
RUN pnpm install --frozen-lockfile
RUN bun install --frozen-lockfile
# Build the SvelteKit app with adapter-node
COPY . .
RUN pnpm run build:server
RUN bun run build:server
# Production image
FROM node:22-alpine AS production