mcp-prueba init
Some checks failed
build-and-push / build (push) Failing after 2s

This commit is contained in:
2025-05-02 21:55:57 -06:00
commit f12dea512e
4 changed files with 129 additions and 0 deletions

8
Dockerfile Normal file
View File

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