Initial commit: APEX Status API v1.0 - Platform health monitoring
This commit is contained in:
@@ -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"]
|
||||
Reference in New Issue
Block a user