Skip to content

Commit

Permalink
attempt 7
Browse files Browse the repository at this point in the history
  • Loading branch information
djohts committed Dec 30, 2023
1 parent 2543ddc commit 82d58d6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions nodejs.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 82d58d6

Please sign in to comment.