Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions apps/workers/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ RUN npm install -g pnpm
WORKDIR /app

# Bun binary for dev runtime
FROM oven/bun:1.3.10-alpine AS bunbase
FROM oven/bun:1.3.11-alpine AS bunbase

# Development - install and run in one stage
FROM base AS dev
Expand Down Expand Up @@ -41,7 +41,7 @@ RUN pnpm install --shamefully-hoist --frozen-lockfile
COPY . .

# Production - run source directly (Bun handles TypeScript/JSX natively)
FROM oven/bun:1.3.10-alpine AS production
FROM oven/bun:1.3.11-alpine AS production
WORKDIR /app

# Install Chromium for Puppeteer PDF generation
Expand Down
Loading