Skip to content

Commit

Permalink
attempt 5
Browse files Browse the repository at this point in the history
  • Loading branch information
djohts committed Dec 30, 2023
1 parent adfd6a5 commit 3de504d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion nodejs.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - && \
apt install yarn

# Install bun
RUN case $TARGETARCH in 'amd64') TARGET=linux-x64-baseline;; 'arm64') TARGET=linux-aarch64;; esac && \
RUN case ${TARGETARCH} in 'amd64') TARGET=linux-x64-baseline;; 'arm64') TARGET=linux-aarch64;; esac && \
echo "TARGETARCH=${TARGETARCH}" && \
echo "TARGET=$TARGET" && \
curl -fLo bun-linux.zip https://github.com/oven-sh/bun/releases/download/bun-${BUN_VERSION}/bun-$TARGET.zip && \
unzip bun-linux.zip && \
Expand Down

0 comments on commit 3de504d

Please sign in to comment.