diff --git a/frontend/Dockerfile b/frontend/Dockerfile index 7794fd9..ef567e7 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -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 diff --git a/frontend/Dockerfile.local b/frontend/Dockerfile.local index f01f07e..ab4a2b5 100644 --- a/frontend/Dockerfile.local +++ b/frontend/Dockerfile.local @@ -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 diff --git a/frontend/Dockerfile.original.backup b/frontend/Dockerfile.original.backup index 45fbc54..a4c7476 100644 --- a/frontend/Dockerfile.original.backup +++ b/frontend/Dockerfile.original.backup @@ -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 @@ -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