From 6400dd8459a50abda8ffe6d98716f107e4123e4e Mon Sep 17 00:00:00 2001 From: SirBlobby Date: Sat, 21 Feb 2026 22:26:33 -0500 Subject: [PATCH] Dockerfile Bun update --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2fb5cd0..2b37981 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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