fix dockerfile with docker lockfile

This commit is contained in:
2026-08-30 21:42:33 +00:00
parent c9a7294d13
commit 077e9f54b9

View File

@@ -3,7 +3,7 @@ FROM oven/bun AS builder
RUN bun RUN bun
WORKDIR /app WORKDIR /app
COPY package.json bun.lockb ./ COPY package.json bun.lock ./
RUN bun install RUN bun install
COPY . . COPY . .