From 35a25afc6033ae4e6f49367a9238e708f8ecc40f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 18 Sep 2025 10:06:37 +0000 Subject: [PATCH] deps(docker)(deps): bump oven/bun in /frontend Bumps oven/bun from 1.1.34-alpine to 1.2.22-alpine. --- updated-dependencies: - dependency-name: oven/bun dependency-version: 1.2.22-alpine dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- frontend/Dockerfile | 2 +- frontend/Dockerfile.local | 2 +- frontend/Dockerfile.original.backup | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/frontend/Dockerfile b/frontend/Dockerfile index 7794fd9..c95a7a0 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.2.22-alpine AS runtime # Set working directory WORKDIR /app diff --git a/frontend/Dockerfile.local b/frontend/Dockerfile.local index f01f07e..efc2f18 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.2.22-alpine WORKDIR /app diff --git a/frontend/Dockerfile.original.backup b/frontend/Dockerfile.original.backup index 45fbc54..43864e6 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.2.22-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.2.22-alpine AS runtime # Set working directory WORKDIR /app