feat: optimize event capturing and playback accuracy

This commit is contained in:
2026-02-15 18:06:50 +01:00
parent e615d88fd8
commit a136e7b4a7
38 changed files with 2847 additions and 523 deletions

View File

@@ -34,10 +34,15 @@ RUN --mount=type=cache,id=pnpm,target=/pnpm/store \
# Copy source code
COPY . .
# Build application
RUN pnpm build
# Stage 2: Development (Hot-Reloading)
FROM builder AS development
ENV NODE_ENV=development
CMD ["pnpm", "dev:local"]
# Stage 2: Runner
# Build application
# RUN pnpm build
# Stage 3: Runner
FROM registry.infra.mintel.me/mintel/runtime:v1.7.10 AS runner
WORKDIR /app