Files
conversation-layer/mcp/Dockerfile
josedario87 7eba5b2755
All checks were successful
Deploy conversation layer / deploy (push) Successful in 6s
iniciada creacion del mcp
2025-06-06 20:51:06 -06:00

8 lines
117 B
Docker

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