File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -32,6 +32,7 @@ RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-ins
3232 bash-completion \
3333 curl \
3434 git \
35+ jq \
3536 python3-dev \
3637 python3-pip \
3738 python3-venv \
@@ -49,8 +50,8 @@ RUN if [ ! "$(uname -m)" = "x86_64" ]; then \
4950 && rm -rf /var/lib/apt/lists/*; fi
5051
5152# Add n (node version manager), lts node, npm, and yarn
52- RUN curl -fsSL https://raw.githubusercontent.com/tj/n/v9.2 .0/bin/n -o n && \
53- if [ ! "ab1292c18efdac7b6b673949deeee3654b267518dea32569caf2eeb0ee0c69d5 n" = "$(sha256sum n)" ]; then \
53+ RUN curl -fsSL https://raw.githubusercontent.com/tj/n/v10.1 .0/bin/n -o n && \
54+ if [ ! "a09599719bd38af5054f87b8f8d3e45150f00b7b5675323aa36b36d324d087b9 n" = "$(sha256sum n)" ]; then \
5455 echo "N installer does not match expected checksum! exiting" ; \
5556 exit 1; \
5657 fi && \
@@ -83,8 +84,8 @@ RUN python3 -m venv ${HOME}/.vyper && \
8384 echo '\n export PATH=${PATH}:${HOME}/.vyper/bin' >> ~/.bashrc
8485
8586# Install foundry
86- RUN curl -fsSL https://raw.githubusercontent.com/foundry-rs/foundry/ded0317584bd835e79f2573e56c0043ab548da04 /foundryup/install -o install && \
87- if [ ! "5d67b82c1319b26f19d496f8602edf0dd62da7cf41c219bc38cf3f6dd5f9c86b install" = "$(sha256sum install)" ]; then \
87+ RUN curl -fsSL https://raw.githubusercontent.com/foundry-rs/foundry/27cabbd6c905b1273a5ed3ba7c10acce90833d76 /foundryup/install -o install && \
88+ if [ ! "e4456a15d43054b537b329f6ca6d00962242050d24de4c59657a44bc17ad8a0c install" = "$(sha256sum install)" ]; then \
8889 echo "Foundry installer does not match expected checksum! exiting" ; \
8990 exit 1; \
9091 fi && \
You can’t perform that action at this time.
0 commit comments