ci: disable vite hooks in docker build

This commit is contained in:
Nicolas Meienberger 2026-04-10 22:53:23 +02:00
parent 1f4f94b3a5
commit a33ffc0e62
No known key found for this signature in database

View file

@ -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 . .