feat: initial commit

This commit is contained in:
2026-04-10 17:48:16 +00:00
commit 5ac439a96c
4 changed files with 52 additions and 0 deletions

13
Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
FROM node:20-alpine
WORKDIR /app
COPY probe-server.js /app/probe-server.js
ENV PORT=19090
ENV HOST=0.0.0.0
EXPOSE 19090
CMD ["node", "probe-server.js"]