Skip to content

Commit

Permalink
fix image and update bun to 1.1.8
Browse files Browse the repository at this point in the history
  • Loading branch information
djohts authored May 11, 2024
1 parent e11c754 commit 9842c0c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nodejs.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ ARG DEBIAN_FRONTEND=noninteractive
ARG TARGETARCH
ARG NODE_VERSION
ARG X_URL=https://deb.nodesource.com/setup_$NODE_VERSION.x
ARG BUN_VERSION=v1.1.2
ARG BUN_VERSION=v1.1.8

RUN apt update && \
apt install -y curl software-properties-common default-jre locales git unzip && \
Expand Down Expand Up @@ -32,7 +32,7 @@ RUN case ${TARGETARCH} in 'amd64') TARGET=linux-x64-baseline;; 'arm64') TARGET=l
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 bun-$TARGET
rm -r bun.zip bun-$TARGET

# Lib dependencies for puppeteer
RUN apt install -y libxdamage1 libgbm1
Expand Down

0 comments on commit 9842c0c

Please sign in to comment.