From d9d3a4c1d2f7fb1aa442a9a3dd942271b77f3972 Mon Sep 17 00:00:00 2001 From: Joakim Persson Date: Sun, 19 Apr 2026 23:05:31 +0200 Subject: [PATCH] Fix Bun download URL: remove non-existent LATEST file fetch --- Dockerfile | 1 - 1 file changed, 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 4ecd9d2..0dae3c2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -174,7 +174,6 @@ RUN if [ "${INSTALL_OMOS}" = "true" ]; then \ elif [ "$ARCH" = "aarch64" ]; then \ BUN_ARCH="aarch64"; \ fi && \ - BUN_VERSION=$(curl -fsSL https://github.com/oven-sh/bun/releases/latest/download/LATEST) && \ curl -fsSL "https://github.com/oven-sh/bun/releases/latest/download/bun-linux-${BUN_ARCH}.zip" -o /tmp/bun.zip && \ unzip -o /tmp/bun.zip -d /tmp/bun && \ mv /tmp/bun/bun-linux-${BUN_ARCH}/bun /usr/local/bin/bun && \