Adapt DockerFile

This commit is contained in:
Reinier Criel 2025-12-11 10:45:24 -08:00 committed by Sander Declerck
parent 0d1283a0fc
commit cba1fc36af
No known key found for this signature in database

View file

@ -41,11 +41,12 @@ RUN apt-get install -y fish && \
touch /root/.config/fish/config.fish
# Install Volta and Node.js
RUN curl https://get.volta.sh | bash
RUN volta install node@${NODE_VERSION}
RUN volta install npm@${NPM_VERSION}
RUN volta install yarn@${YARN_VERSION}
RUN volta install pnpm@${PNPM_VERSION}
RUN curl -sSL https://get.volta.sh | bash
ENV VOLTA_HOME="/root/.volta"
RUN ${VOLTA_HOME}/bin/volta install node@${NODE_VERSION}
RUN ${VOLTA_HOME}/bin/volta install npm@${NPM_VERSION}
RUN ${VOLTA_HOME}/bin/volta install yarn@${YARN_VERSION}
RUN ${VOLTA_HOME}/bin/volta install pnpm@${PNPM_VERSION}
# Install Bun
RUN curl -fsSL https://bun.sh/install | bash