diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index c8b5b161..c200db47 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.3-alpine as base +FROM oven/bun:1.2.5-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 74b3381e..25e2bf69 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -31,7 +31,7 @@ Please see [Database Changes](#database-changes) and [New Configuration](#new-co ### Backend -- [x] 🚀 Upgraded Bun to `1.2.3` +- [x] 🚀 Upgraded Bun to `1.2.5` - [x] 🖼️ Simplified media pipeline: this will improve S3 performance - [ ] 📈 It is now possible to disable media proxying for your CDN (offloading considerable bandwidth to your more optimized CDN). - [x] 👷 Outbound federation, inbox processing, data fetching and media processing are now handled by a queue system. diff --git a/Dockerfile b/Dockerfile index 7a320713..b700eca8 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.3-alpine +FROM oven/bun:1.2.5-alpine # Install libstdc++ for Bun and create app directory RUN apk add --no-cache libstdc++ && \ diff --git a/Worker.Dockerfile b/Worker.Dockerfile index 2dac54ab..45b232a3 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.3-alpine +FROM oven/bun:1.2.5-alpine # Install libstdc++ for Bun and create app directory RUN apk add --no-cache libstdc++ && \