From 43df9fb760921057947745ac87af821d3e63ed7d Mon Sep 17 00:00:00 2001 From: default Date: Tue, 7 Apr 2026 00:03:19 +0000 Subject: [PATCH] Bun.lock copy removed Docker file --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 96982b1..e348155 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,8 @@ # Build Frontend FROM oven/bun:alpine AS frontend-builder WORKDIR /app -COPY package.json bun.lock ./ -RUN bun install --frozen-lockfile +COPY package.json ./ +RUN bun install COPY . . RUN bun run build