Files
k3s-gitops/apps/ollama-mcp/mcp-prometheus/Dockerfile
2026-03-01 17:09:49 +00:00

8 lines
135 B
Docker

FROM node:20-alpine
WORKDIR /app
COPY package.json .
RUN npm install --production
COPY index.js .
EXPOSE 3000
CMD ["node", "index.js"]