Update agent with new Gemini SDK and MCP integration

This commit is contained in:
josedario87
2025-06-05 00:51:05 -06:00
parent e6caa03987
commit 7d0495eff6
4 changed files with 913 additions and 16 deletions

View File

@@ -1,5 +1,5 @@
# ---------- Build stage ----------
FROM node:18-alpine AS builder
FROM node:20-alpine AS builder
WORKDIR /app
COPY package*.json ./
RUN npm install
@@ -7,7 +7,7 @@ COPY . .
RUN npm run build
# ---------- Production stage ----------
FROM node:18-alpine
FROM node:20-alpine
WORKDIR /app
COPY --from=builder /app/dist ./dist
COPY package*.json ./