From 82d58d60dc3beb9291c5fd29079bf5c2586d8d6b Mon Sep 17 00:00:00 2001 From: djoh Date: Sat, 30 Dec 2023 18:47:28 +0200 Subject: [PATCH] attempt 7 --- nodejs.Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/nodejs.Dockerfile b/nodejs.Dockerfile index dd4038f..c700ecc 100644 --- a/nodejs.Dockerfile +++ b/nodejs.Dockerfile @@ -29,10 +29,10 @@ RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - && \ RUN case ${TARGETARCH} in 'amd64') TARGET=linux-x64-baseline;; 'arm64') TARGET=linux-aarch64;; esac && \ echo "TARGETARCH=${TARGETARCH}" && \ echo "TARGET=$TARGET" && \ - curl -fL -o bun-linux.zip https://github.com/oven-sh/bun/releases/download/bun-${BUN_VERSION}/bun-$TARGET.zip && \ - unzip bun-linux.zip && \ - mv bun-linux/bun /usr/local/bin/bun && \ - rm bun-linux.zip + curl -fL -o bun.zip https://github.com/oven-sh/bun/releases/download/bun-${BUN_VERSION}/bun-$TARGET.zip && \ + unzip bun.zip && \ + mv bun-$TARGET/bun /usr/local/bin/bun && \ + rm bun.zip # Lib dependencies for puppeteer RUN apt install -y libxdamage1 libgbm1