feat: add Loki MCP server Dockerfile

This commit is contained in:
Claude AI
2026-03-02 09:05:28 +00:00
parent 93ecfe7418
commit dd4f513668

View File

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