Skip to content

Commit 99acc56

Browse files
committed
Use official Debian Docker images and updated nvm
1 parent 6166d41 commit 99acc56

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

build-toolchains-manual.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,12 @@ languages=(
1313
#node:linux-arm:10
1414
#node:linux-arm:12
1515
#node:linux-arm:14
16+
#node:linux-arm:20
1617
#node:linux-arm64:8
1718
#node:linux-arm64:10
1819
#node:linux-arm64:12
1920
#node:linux-arm64:14
21+
#node:linux-arm64:20
2022
#node:linux-x64:8
2123
#node:linux-x64:10
2224
#node:linux-x64:12

toolchain/linux-arm/node/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM --platform=linux/arm/v7 balenalib/raspberry-pi-debian:bookworm
1+
FROM --platform=linux/arm/v7 debian:bookworm
22

33
ARG DEBIAN_FRONTEND=noninteractive
44
ARG NODE_VERSION
@@ -25,7 +25,7 @@ RUN apt update && \
2525
zlib1g-dev && \
2626
apt clean && \
2727
rm -rf /var/lib/apt/lists/* && \
28-
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash && \
28+
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.2/install.sh | bash && \
2929
bash -c "export NVM_DIR=\${HOME}/.nvm && \
3030
source \${NVM_DIR}/nvm.sh && \
3131
npm config -g set cache /tmp/.npm && \

toolchain/linux-arm64/node/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM --platform=linux/arm64 arm64v8/debian:bookworm
1+
FROM --platform=linux/arm64 debian:bookworm
22

33
ARG DEBIAN_FRONTEND=noninteractive
44
ARG NODE_VERSION
@@ -25,7 +25,7 @@ RUN apt update && \
2525
zlib1g-dev && \
2626
apt clean && \
2727
rm -rf /var/lib/apt/lists/* && \
28-
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash && \
28+
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.2/install.sh | bash && \
2929
bash -c "export NVM_DIR=\${HOME}/.nvm && \
3030
source \${NVM_DIR}/nvm.sh && \
3131
npm config -g set cache /tmp/.npm && \

toolchain/linux-x64/node/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM debian:bookworm
1+
FROM --platform=linux/amd64 debian:bookworm
22

33
ARG DEBIAN_FRONTEND=noninteractive
44
ARG NODE_VERSION
@@ -25,7 +25,7 @@ RUN apt update && \
2525
zlib1g-dev && \
2626
apt clean && \
2727
rm -rf /var/lib/apt/lists/* && \
28-
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash && \
28+
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.2/install.sh | bash && \
2929
bash -c "export NVM_DIR=\${HOME}/.nvm && \
3030
source \${NVM_DIR}/nvm.sh && \
3131
npm config -g set cache /tmp/.npm && \

0 commit comments

Comments
 (0)