Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@ COPY package.json package-lock.json ./
# npm's softer peer resolution by default; `npm ci` on node:22-slim is
# strict, so opt into legacy resolution here until openai publishes a
# zod@4-compatible release.
RUN npm ci --omit=dev --legacy-peer-deps
# HUSKY=0: the `prepare` script runs `husky`, which is a devDep omitted
# here. Husky v9 respects this env var and skips silently.
RUN HUSKY=0 npm ci --omit=dev --legacy-peer-deps

# Copy application source
COPY src/ ./src/
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
"test:docker-smoke": "./scripts/docker-smoke-test.sh",
"migrate": "dotenv -e .env -- tsx src/db/migrate.ts",
"migrate:test": "dotenv -e .env.test -- tsx src/db/migrate.ts",
"prepare": "husky"
"prepare": "husky || true"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.80.0",
Expand Down
Loading