From 79e973f390cc29a2fdd58df40a799858e66056ad Mon Sep 17 00:00:00 2001 From: William Valentin Date: Fri, 17 Oct 2025 10:11:49 -0700 Subject: [PATCH] chore: upgrade bun runtime version to 1.2.20 - Updates Dockerfile ARG BUN_VERSION from 1.0.0 to 1.2.20 - Resolves lockfile compatibility issues with newer bun versions - Ensures consistency between local and Docker environments --- s3-nodejs-api/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/s3-nodejs-api/Dockerfile b/s3-nodejs-api/Dockerfile index bf45f79..6568617 100644 --- a/s3-nodejs-api/Dockerfile +++ b/s3-nodejs-api/Dockerfile @@ -1,6 +1,6 @@ # syntax=docker/dockerfile:1 -ARG BUN_VERSION=1.0.0 +ARG BUN_VERSION=1.2.20 FROM oven/bun:${BUN_VERSION} AS base WORKDIR /app