ci: disable vite hooks in docker build
This commit is contained in:
parent
73ae5c41b5
commit
c25eacad05
1 changed files with 2 additions and 2 deletions
|
|
@ -67,7 +67,7 @@ COPY ./packages/core/package.json ./packages/core/package.json
|
|||
COPY ./packages/contracts/package.json ./packages/contracts/package.json
|
||||
COPY ./apps/agent/package.json ./apps/agent/package.json
|
||||
|
||||
RUN bun install --frozen-lockfile --ignore-scripts
|
||||
RUN VITE_GIT_HOOKS=0 bun install --frozen-lockfile --ignore-scripts
|
||||
|
||||
COPY . .
|
||||
|
||||
|
|
@ -90,7 +90,7 @@ COPY ./package.json ./bun.lock ./
|
|||
COPY ./packages/core/package.json ./packages/core/package.json
|
||||
COPY ./packages/contracts/package.json ./packages/contracts/package.json
|
||||
COPY ./apps/agent/package.json ./apps/agent/package.json
|
||||
RUN bun install --frozen-lockfile
|
||||
RUN VITE_GIT_HOOKS=0 bun install --frozen-lockfile
|
||||
|
||||
COPY . .
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue