We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ad5f54 commit 9c28984Copy full SHA for 9c28984
1 file changed
.devcontainer/Dockerfile
@@ -3,6 +3,10 @@ SHELL ["/bin/bash", "-c"]
3
4
ENV NVM_DIR=/root/.nvm
5
ENV NODE_VERSION=22.15.0
6
+ARG AZTEC_VERSION=4.0.0-nightly.20260204
7
+ENV AZTEC_VERSION=$AZTEC_VERSION
8
+ENV NON_INTERACTIVE=1
9
+ENV BIN_PATH=/usr/local/bin
10
11
# Install dependencies including newer libstdc++
12
RUN apt update && apt install -y \
@@ -27,4 +31,6 @@ RUN curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.5/install.sh | b
27
31
28
32
# Add node and npm to path
29
33
ENV PATH="${NVM_DIR}/versions/node/v${NODE_VERSION}/bin:${PATH}"
30
-RUN npm i -g yarn
34
+RUN npm i -g yarn
35
+RUN curl -fsSL "https://install.aztec.network/${AZTEC_VERSION}" \
36
+ | VERSION="${AZTEC_VERSION}" bash -s
0 commit comments