MCP Funcional

This commit is contained in:
Magdiel Cardoso
2025-04-02 13:12:57 -03:00
commit c6cbb2f7ac
21 changed files with 10444 additions and 0 deletions
+21
View File
@@ -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"]