mirror of
https://github.com/EvolutionAPI/chatwoot_mcp.git
synced 2026-03-21 21:08:35 -06:00
MCP Funcional
This commit is contained in:
+21
@@ -0,0 +1,21 @@
|
||||
FROM node:18-alpine
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
# Copiar arquivos do projeto
|
||||
COPY package*.json ./
|
||||
COPY tsconfig.json ./
|
||||
COPY wrangler.toml ./
|
||||
COPY src ./src
|
||||
|
||||
# Instalar dependências
|
||||
RUN npm install
|
||||
|
||||
# Compilar TypeScript
|
||||
RUN npm run build
|
||||
|
||||
# Expor a porta
|
||||
EXPOSE 8787
|
||||
|
||||
# Comando para iniciar o servidor
|
||||
CMD ["npm", "run", "start"]
|
||||
Reference in New Issue
Block a user