Includes a Node.js HTTP server, static HTML page, and Dockerfile for containerized self-hosting. Exposes a /health endpoint for platform health checks. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
7 lines
126 B
Docker
7 lines
126 B
Docker
FROM node:20-alpine
|
|
WORKDIR /app
|
|
COPY package.json .
|
|
COPY server.js .
|
|
COPY index.html .
|
|
EXPOSE 3000
|
|
CMD ["node", "server.js"]
|