feat: add v0.1 gitops ci templates

This commit is contained in:
Codex
2026-05-29 11:14:59 +08:00
parent 5deb9fa7fd
commit 4579330462
13 changed files with 760 additions and 16 deletions
+13
View File
@@ -0,0 +1,13 @@
FROM oven/bun:1.2.15-alpine
WORKDIR /app
ENV NODE_ENV=production
ENV PORT=8080
COPY package.json tsconfig.json ./
COPY scripts ./scripts
COPY src ./src
COPY deploy/deploy.json ./deploy/deploy.json
EXPOSE 8080
CMD ["bun", "src/mgr/main.ts"]