fix: add lru-cache to Docker builder stage dependencies

- Add lru-cache@^11.2.1 to TypeScript compilation dependencies in Dockerfile
- Fixes Docker build failures due to missing module during compilation
This commit is contained in:
czlonkowski
2025-09-19 19:12:09 +02:00
parent bc7bd8e2c0
commit 32e434fb76

View File

@@ -15,7 +15,7 @@ RUN --mount=type=cache,target=/root/.npm \
npm install --no-save typescript@^5.8.3 @types/node@^22.15.30 @types/express@^5.0.3 \ npm install --no-save typescript@^5.8.3 @types/node@^22.15.30 @types/express@^5.0.3 \
@modelcontextprotocol/sdk@^1.12.1 dotenv@^16.5.0 express@^5.1.0 axios@^1.10.0 \ @modelcontextprotocol/sdk@^1.12.1 dotenv@^16.5.0 express@^5.1.0 axios@^1.10.0 \
n8n-workflow@^1.96.0 uuid@^11.0.5 @types/uuid@^10.0.0 \ n8n-workflow@^1.96.0 uuid@^11.0.5 @types/uuid@^10.0.0 \
openai@^4.77.0 zod@^3.24.1 openai@^4.77.0 zod@^3.24.1 lru-cache@^11.2.1
# Copy source and build # Copy source and build
COPY src ./src COPY src ./src