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