Version inicial monitor RPi

This commit is contained in:
2026-06-02 17:31:57 +02:00
commit 8a0e1e83ed
9 changed files with 3124 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
FROM node:24-alpine
WORKDIR /app
RUN apk add --no-cache openssh-client sshpass
COPY server.js dashboard.html config.html config.json ./
ENV PORT=8787
ENV CONFIG_PATH=/data/config.json
EXPOSE 8787
CMD ["node", "server.js"]