Bun.lock copy removed Docker file

This commit is contained in:
2026-04-07 00:03:19 +00:00
parent 373364a719
commit 43df9fb760
+2 -2
View File
@@ -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