Dockerfile Bun update

This commit is contained in:
2026-02-21 22:26:33 -05:00
parent 913f45b51b
commit 6400dd8459

View File

@@ -1,8 +1,8 @@
# Stage 1: Build SvelteKit static frontend
FROM oven/bun:alpine AS frontend-builder
WORKDIR /app
COPY package.json bun.lock ./
RUN bun install --frozen-lockfile || bun install
COPY package.json ./
RUN bun install
COPY . .
RUN bun run build