zitadel auth

This commit is contained in:
Codex
2026-05-01 19:09:58 +03:00
commit 6b91afe300
5 changed files with 796 additions and 0 deletions

5
frontend/Dockerfile Normal file
View File

@@ -0,0 +1,5 @@
FROM node:20-alpine
WORKDIR /app
COPY server.js ./server.js
EXPOSE 3000
CMD ["node", "server.js"]