From 44b7e5782c8ac6a97e125b6d9f235602712f9288 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 30 Aug 2026 04:32:36 +0000 Subject: [PATCH] Bump the docker group with 2 updates Bumps the docker group with 2 updates: oven/bun and node. Updates `oven/bun` from 1.3.14-slim to 1.4.0-slim Updates `node` from 26.7.0-slim to 26.8.1-slim --- updated-dependencies: - dependency-name: oven/bun dependency-version: 1.4.0-slim dependency-type: direct:production update-type: version-update:semver-minor dependency-group: docker - dependency-name: node dependency-version: 26.8.1-slim dependency-type: direct:production update-type: version-update:semver-minor dependency-group: docker ... Signed-off-by: dependabot[bot] --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8936de52..51287632 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,19 +3,19 @@ # Bun installs and builds because bun.lock is the lockfile; Node 22 runs the server because # `next start` is the supported production entrypoint and drags in no Bun-specific behaviour. -FROM oven/bun:1.3.14-slim AS deps +FROM oven/bun:1.4.0-slim AS deps WORKDIR /app COPY package.json bun.lock ./ RUN bun install --frozen-lockfile -FROM oven/bun:1.3.14-slim AS build +FROM oven/bun:1.4.0-slim AS build WORKDIR /app COPY --from=deps /app/node_modules ./node_modules COPY . . ENV NEXT_TELEMETRY_DISABLED=1 RUN bun run build -FROM node:26.7.0-slim AS runtime +FROM node:26.8.1-slim AS runtime WORKDIR /app ENV NODE_ENV=production \ NEXT_TELEMETRY_DISABLED=1 \