test: add unraid docker test harness

This commit is contained in:
openclaw 2026-03-04 21:13:12 +00:00
parent d2ed667f0c
commit f8bd8e0ef0
5 changed files with 31 additions and 5 deletions

10
Dockerfile.test Normal file
View file

@ -0,0 +1,10 @@
FROM node:22-bookworm
WORKDIR /app/backend
COPY backend/package*.json ./
RUN npm ci
COPY backend/ ./
CMD ["npm", "test"]