File tree Expand file tree Collapse file tree 4 files changed +6
-5
lines changed
Expand file tree Collapse file tree 4 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -130,7 +130,7 @@ function check_toolchains {
130130 fi
131131 done
132132 # Check Node.js version.
133- local node_min_version=" 24.12 .0"
133+ local node_min_version=" 22.15 .0"
134134 local node_installed_version=$( node --version | cut -d ' v' -f 2)
135135 if [[ " $( printf ' %s\n' " $node_min_version " " $node_installed_version " | sort -V | head -n1) " != " $node_min_version " ]]; then
136136 encourage_dev_container
Original file line number Diff line number Diff line change 1- ami-067627aa971a1dcbb
1+ ami-09d27244b23be8891
Original file line number Diff line number Diff line change 1- ami-099a6d94f71a679d0
1+ ami-0e5e48268513912d0
Original file line number Diff line number Diff line change @@ -12,7 +12,8 @@ RUN yarn workspaces focus @aztec/aztec --production
1212# This can be cached and will only update if dependencies change.
1313FROM ubuntu:noble
1414
15- ENV NODE_MAJOR=24
15+ ENV NODE_MAJOR=22
16+ ENV NODE_MINOR=15
1617
1718RUN apt update && apt install -y \
1819 curl \
@@ -26,7 +27,7 @@ RUN apt update && apt install -y \
2627 gnupg && \
2728 curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg && \
2829 echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_$NODE_MAJOR.x nodistro main" | tee /etc/apt/sources.list.d/nodesource.list && \
29- apt update && apt install nodejs && \
30+ apt update && apt install nodejs=$NODE_MAJOR.$NODE_MINOR.0-1nodesource1 && \
3031 rm -rf /var/lib/apt/lists/*
3132# Install anvil.
3233COPY --from=build /opt/foundry/bin/anvil /opt/foundry/bin/anvil
You can’t perform that action at this time.
0 commit comments