# APESS reporter sidecar — tiny outbound-only state mirror (edge → central). FROM node:22-alpine WORKDIR /app ENV NODE_ENV=production COPY deploy/lan/reporter/package.json ./ RUN npm install --omit=dev COPY deploy/lan/reporter/index.mjs ./ CMD ["node", "index.mjs"]