Files
mcp-prueba/Dockerfile
josedario87 f12dea512e
Some checks failed
build-and-push / build (push) Failing after 2s
mcp-prueba init
2025-05-02 21:55:57 -06:00

9 lines
93 B
Docker

FROM node:20-alpine
WORKDIR /app
COPY . .
RUN npm install
ENTRYPOINT ["node", "index.js"]