Skip to content
Closed
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion frontend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ RUN echo "Verifying build output..." && \
echo "✅ Build verification passed"

# Production stage - runtime with Bun
FROM oven/bun:1.1.34-alpine AS runtime
FROM oven/bun:1.3.0-alpine AS runtime

# Set working directory
WORKDIR /app
Expand Down
2 changes: 1 addition & 1 deletion frontend/Dockerfile.local
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Local development Dockerfile
# Fast local development with Bun - no build step, direct dev server
# Usage: docker build -f Dockerfile.local -t frontend-dev .
FROM oven/bun:1.1.34-alpine
FROM oven/bun:1.3.0-alpine

WORKDIR /app

Expand Down
4 changes: 2 additions & 2 deletions frontend/Dockerfile.original.backup
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Multi-stage build for production - use official Bun image
FROM oven/bun:1.1.34-alpine AS build
FROM oven/bun:1.3.0-alpine AS build

# Set working directory
WORKDIR /app
Expand Down Expand Up @@ -29,7 +29,7 @@ RUN bun run build || (echo "Build failed, checking for alternative build methods
fi)

# Production stage - serve with Bun for TanStack Start SSR
FROM oven/bun:1.1.34-alpine AS runtime
FROM oven/bun:1.3.0-alpine AS runtime

# Set working directory
WORKDIR /app
Expand Down
Loading