Mission Control with OpenClaw hook - added simple API and updated configs
Some checks failed
CI / check (push) Has been cancelled
CI / installer (push) Has been cancelled
CI / e2e (push) Has been cancelled

This commit is contained in:
Neo
2026-02-20 12:13:36 +00:00
parent 1c8a531f6a
commit c56b173dcc
13 changed files with 347 additions and 13 deletions

12
simple-api.Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM node:20-alpine
WORKDIR /app
COPY simple-api.js .
COPY simple-api-package.json package.json
RUN npm install
EXPOSE 3001
CMD ["node", "simple-api.js"]