vps-health-api/Dockerfile
le king fu d6eb06302c feat: initial vps-health-api service
Zero-dependency Node.js health endpoint exposing CPU, RAM, disk and
uptime metrics. Bearer token auth, Docker-ready (node:22-alpine).

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-26 20:48:09 -05:00

6 lines
110 B
Docker

FROM node:22-alpine
WORKDIR /app
COPY package.json index.js ./
EXPOSE 3001
USER node
CMD ["node", "index.js"]