From 2310e8b33d8a5eae227bc940a25d0613e749af23 Mon Sep 17 00:00:00 2001 From: Jesse Wierzbinski Date: Sun, 22 Jun 2025 17:55:50 +0200 Subject: [PATCH] chore: :arrow_up: Upgrade Bun to 1.2.17 --- .devcontainer/Dockerfile | 2 +- CHANGELOG.md | 2 +- Dockerfile | 2 +- Worker.Dockerfile | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index d3d0b4c8..b1c78734 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -1,5 +1,5 @@ # Bun doesn't run well on Musl but this seems to work -FROM oven/bun:1.2.15-alpine as base +FROM oven/bun:1.2.17-alpine as base # Switch to Bash by editing /etc/passwd RUN apk add --no-cache libstdc++ git bash curl openssh cloc && \ diff --git a/CHANGELOG.md b/CHANGELOG.md index 8e6daf4a..b5ef7af7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,7 +9,7 @@ ### Backend -- [x] 🚀 Upgraded Bun to `1.2.15` +- [x] 🚀 Upgraded Bun to `1.2.17` # `0.8.0` • Federation 2: Electric Boogaloo diff --git a/Dockerfile b/Dockerfile index 41f5dadf..43544acb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -26,7 +26,7 @@ RUN bun run build WORKDIR /temp/dist # Copy production dependencies and source code into final image -FROM oven/bun:1.2.15-alpine +FROM oven/bun:1.2.17-alpine # Install libstdc++ for Bun and create app directory RUN apk add --no-cache libstdc++ && \ diff --git a/Worker.Dockerfile b/Worker.Dockerfile index 5c9a146b..5eb204a2 100644 --- a/Worker.Dockerfile +++ b/Worker.Dockerfile @@ -26,7 +26,7 @@ RUN bun run build:worker WORKDIR /temp/dist # Copy production dependencies and source code into final image -FROM oven/bun:1.2.15-alpine +FROM oven/bun:1.2.17-alpine # Install libstdc++ for Bun and create app directory RUN apk add --no-cache libstdc++ && \