Fix: Use correct Bun binary URL instead of zip

This commit is contained in:
southseact-3d
2026-02-10 13:56:13 +00:00
parent cca90a34bb
commit 9a5b4ebc8b

View File

@@ -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" \