🔄 update: add bun.lock file copy to Dockerfile for dependency management

- Included the `bun.lock` file in the Dockerfile to ensure consistent dependency installation during the build process.
This commit is contained in:
CaIon
2025-07-13 14:05:45 +08:00
parent 706df56efc
commit a2f7c87666

View File

@@ -2,6 +2,7 @@ FROM oven/bun:latest AS builder
WORKDIR /build WORKDIR /build
COPY web/package.json . COPY web/package.json .
COPY web/bun.lock .
RUN bun install RUN bun install
COPY ./web . COPY ./web .
COPY ./VERSION . COPY ./VERSION .