Initial commit — homelab dashboard v1.0

This commit is contained in:
Nox (OpenClaw)
2026-03-14 16:16:58 +00:00
commit b8ae4d1385
9 changed files with 705 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
FROM node:22-alpine
WORKDIR /app
# Copier les fichiers de dépendances
COPY package.json ./
RUN npm install --production
# Copier le reste du projet
COPY . .
EXPOSE 3900
CMD ["node", "server.js"]