Fix: Use correct Bun binary URL instead of zip
This commit is contained in:
@@ -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" \
|
||||
|
||||
Reference in New Issue
Block a user