File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed
Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -135,7 +135,7 @@ RUN echo '\ncat /etc/motd\n' >> ~/.bashrc
135135FROM toolbox-base AS toolbox-ci
136136
137137ENV HOME="/root"
138- ENV PATH="${PATH}:${HOME}/.local /bin:${HOME}/.vyper/bin:${HOME}/.foundry/bin"
138+ ENV PATH="${PATH}:${HOME}/.crytic /bin:${HOME}/.vyper/bin:${HOME}/.foundry/bin"
139139
140140# Install vyper compiler
141141RUN python3 -m venv ${HOME}/.vyper && \
@@ -152,7 +152,9 @@ RUN curl -fsSL https://raw.githubusercontent.com/foundry-rs/foundry/27cabbd6c905
152152 foundryup
153153
154154# Install python tools
155- RUN pip3 install --no-cache-dir --user \
156- solc-select \
157- crytic-compile \
158- slither-analyzer
155+ RUN python3 -m venv ${HOME}/.crytic && \
156+ ${HOME}/.crytic/bin/pip3 install --no-cache-dir \
157+ solc-select \
158+ crytic-compile \
159+ slither-analyzer && \
160+ echo '\n export PATH=${PATH}:${HOME}/.crytic/bin' >> ~/.bashrc
You can’t perform that action at this time.
0 commit comments