FROM node:22-alpine

WORKDIR /app

COPY package.json package-lock.json* ./

RUN npm install

COPY . .

CMD ["node", "matomo-mcp-client.js"]
