diff --git a/activepieces-fork/Dockerfile b/activepieces-fork/Dockerfile index 484e4bb5..9d9b8d16 100644 --- a/activepieces-fork/Dockerfile +++ b/activepieces-fork/Dockerfile @@ -30,17 +30,8 @@ RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \ libcap-dev && \ yarn config set python /usr/bin/python3 -RUN export ARCH=$(uname -m) && \ - if [ "$ARCH" = "x86_64" ]; then \ - curl -fSL https://github.com/oven-sh/bun/releases/download/bun-v1.3.1/bun-linux-x64-baseline.zip -o bun.zip; \ - elif [ "$ARCH" = "aarch64" ]; then \ - curl -fSL https://github.com/oven-sh/bun/releases/download/bun-v1.3.1/bun-linux-aarch64.zip -o bun.zip; \ - fi - -RUN unzip bun.zip \ - && mv bun-*/bun /usr/local/bin/bun \ - && chmod +x /usr/local/bin/bun \ - && rm -rf bun.zip bun-* +# Install Bun using npm (more reliable than GitHub downloads) +RUN npm install -g bun@1.3.1 RUN bun --version