chore(docker): include bun.lock* in Dockerfile dependency COPY so bun install uses lockfile
This commit is contained in:
parent
349a6fed63
commit
47cad5423b
1 changed files with 1 additions and 1 deletions
|
|
@ -6,7 +6,7 @@ FROM oven/bun:latest AS base
|
||||||
FROM base AS deps
|
FROM base AS deps
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
COPY package.json bun.lockb* package-lock.json* pnpm-lock.yaml* .npmrc* ./
|
COPY package.json bun.lockb* package-lock.json* pnpm-lock.yaml* .npmrc* bun.lock* ./
|
||||||
RUN bun install --frozen-lockfile
|
RUN bun install --frozen-lockfile
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue