Initial commit: APEX Status API v1.0 - Platform health monitoring

This commit is contained in:
2026-07-02 05:01:45 +00:00
commit 5847e5de11
4 changed files with 144 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
FROM node:20-alpine
RUN apk add --no-cache curl
WORKDIR /app
COPY package.json ./
RUN npm install --production
COPY server.js ./
EXPOSE 3100
HEALTHCHECK --interval=30s --timeout=5s CMD curl -sf http://localhost:3100/health || exit 1
CMD ["node", "server.js"]