First implementation

This commit is contained in:
2026-08-22 15:24:48 -04:00
parent 80b8ddbd3f
commit f714fad2d4
16 changed files with 461 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
FROM oven/bun:1-alpine AS deps
WORKDIR /app
COPY package.json bun.lock ./
RUN bun install --frozen-lockfile --production
FROM oven/bun:1-alpine AS runner
WORKDIR /app
COPY --from=deps /app/node_modules ./node_modules
COPY tsconfig.json ./
COPY src ./src
USER bun
CMD ["bun", "src/index.ts"]