From 9a5b4ebc8bf5385a4a2024c0b996bd795a85c10d Mon Sep 17 00:00:00 2001 From: southseact-3d Date: Tue, 10 Feb 2026 13:56:13 +0000 Subject: [PATCH] Fix: Use correct Bun binary URL instead of zip --- Dockerfile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index a6b6592..214244d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -26,10 +26,8 @@ RUN apt-get update \ unzip \ && rm -rf /var/lib/apt/lists/* -RUN curl -fsSL -o /tmp/bun.zip "https://github.com/oven-sh/bun/releases/download/bun-v${BUN_VERSION}/bun-linux-x64.zip" \ - && unzip -q /tmp/bun.zip -d /usr/local/bin \ - && chmod +x /usr/local/bin/bun \ - && rm /tmp/bun.zip +RUN curl -fsSL -o /usr/local/bin/bun "https://github.com/oven-sh/bun/releases/download/bun-v${BUN_VERSION}/bun-linux-x64" \ + && chmod +x /usr/local/bin/bun RUN curl -fsSL -o /tmp/powershell.tar.gz \ "https://github.com/PowerShell/PowerShell/releases/download/v${PWSH_VERSION}/powershell-${PWSH_VERSION}-linux-x64.tar.gz" \