iniciada creacion del mcp
All checks were successful
Deploy conversation layer / deploy (push) Successful in 6s

This commit is contained in:
2025-06-06 20:51:06 -06:00
parent b39db9ad06
commit 7eba5b2755
9 changed files with 1316 additions and 0 deletions

7
mcp/Dockerfile Normal file
View File

@@ -0,0 +1,7 @@
FROM node:18-alpine
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 5000
CMD ["node", "index.js"]