1
0
forked from baron/baron-sso

keto MCP 제작. ory-keto-migrate 오류 재발생 해결

This commit is contained in:
Lectom C Han
2026-01-28 14:36:34 +09:00
parent e573f4ca50
commit f33f417045
8 changed files with 456 additions and 5 deletions

12
mcp/keto-mcp/Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM node:lts
WORKDIR /app
COPY package.json ./
RUN npm install --omit=dev
COPY src ./src
ENV NODE_ENV=production
CMD ["node", "./src/index.js"]