From 0d1a3a8a05998997125655b53966206ade27172c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 19 Jan 2026 10:16:20 +0000 Subject: [PATCH] chore: bump oven/bun from 1.3.5-alpine to 1.3.6-alpine Bumps oven/bun from 1.3.5-alpine to 1.3.6-alpine. --- updated-dependencies: - dependency-name: oven/bun dependency-version: 1.3.6-alpine dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index c828ba7..11c55be 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ # Multi-stage build for optimal image size and security # Stage 1: Dependencies -FROM oven/bun:1.3.5-alpine AS deps +FROM oven/bun:1.3.6-alpine AS deps WORKDIR /app # Copy package files @@ -12,7 +12,7 @@ COPY package.json bun.lockb* ./ RUN bun install --frozen-lockfile --production # Stage 2: Builder -FROM oven/bun:1.3.5-alpine AS builder +FROM oven/bun:1.3.6-alpine AS builder WORKDIR /app # Copy package files @@ -35,7 +35,7 @@ RUN NODE_ENV=production \ bun run build # Stage 3: Runner (Production) -FROM oven/bun:1.3.5-alpine AS runner +FROM oven/bun:1.3.6-alpine AS runner WORKDIR /app # Install dumb-init for proper signal handling