mirror of
https://github.com/AikidoSec/safe-chain.git
synced 2026-05-26 20:20:49 +00:00
Adapt DockerFile
This commit is contained in:
parent
0d1283a0fc
commit
cba1fc36af
1 changed files with 6 additions and 5 deletions
|
|
@ -41,11 +41,12 @@ RUN apt-get install -y fish && \
|
||||||
touch /root/.config/fish/config.fish
|
touch /root/.config/fish/config.fish
|
||||||
|
|
||||||
# Install Volta and Node.js
|
# Install Volta and Node.js
|
||||||
RUN curl https://get.volta.sh | bash
|
RUN curl -sSL https://get.volta.sh | bash
|
||||||
RUN volta install node@${NODE_VERSION}
|
ENV VOLTA_HOME="/root/.volta"
|
||||||
RUN volta install npm@${NPM_VERSION}
|
RUN ${VOLTA_HOME}/bin/volta install node@${NODE_VERSION}
|
||||||
RUN volta install yarn@${YARN_VERSION}
|
RUN ${VOLTA_HOME}/bin/volta install npm@${NPM_VERSION}
|
||||||
RUN volta install pnpm@${PNPM_VERSION}
|
RUN ${VOLTA_HOME}/bin/volta install yarn@${YARN_VERSION}
|
||||||
|
RUN ${VOLTA_HOME}/bin/volta install pnpm@${PNPM_VERSION}
|
||||||
|
|
||||||
# Install Bun
|
# Install Bun
|
||||||
RUN curl -fsSL https://bun.sh/install | bash
|
RUN curl -fsSL https://bun.sh/install | bash
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue