From 5b6924810e5c9d37b3e2542b05640c44b3671ce6 Mon Sep 17 00:00:00 2001 From: Jesse Wierzbinski Date: Sat, 23 Nov 2024 14:27:26 +0100 Subject: [PATCH] chore: :arrow_up: Upgrade Bun to 1.1.36 --- .devcontainer/Dockerfile | 2 +- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 7fa612b3..85dbdf31 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.1.34-alpine as base +FROM oven/bun:1.1.36-alpine as base # Switch to Bash by editing /etc/passwd RUN apk add --no-cache libstdc++ git bash curl openssh cloc && \ diff --git a/Dockerfile b/Dockerfile index be080807..f6e3f632 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.1.34-alpine +FROM oven/bun:1.1.36-alpine # Install libstdc++ for Bun and create app directory RUN apk add --no-cache libstdc++ && \