فهرست منبع

🔄 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.
CaIon 7 ماه پیش
والد
کامیت
5b5f10fe93
1فایلهای تغییر یافته به همراه1 افزوده شده و 0 حذف شده
  1. 1 0
      Dockerfile

+ 1 - 0
Dockerfile

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