This commit is contained in:
2026-06-06 20:50:23 +02:00
commit 3ce4af8ef2
5 changed files with 537 additions and 0 deletions

11
dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM node:24-slim
WORKDIR /app
COPY package*.json ./
RUN npm install --omit=dev
COPY status.js .
RUN echo "{}" > vehicle-cache.json
CMD ["node", "status.js"]