This commit is contained in:
Reinier Criel 2025-12-11 10:57:18 -08:00
parent c385f9b371
commit a9a7a37f6a

View file

@ -42,11 +42,10 @@ RUN apt-get install -y fish && \
# Install Volta and Node.js # Install Volta and Node.js
RUN curl -sSL https://get.volta.sh | bash RUN curl -sSL https://get.volta.sh | bash
ENV VOLTA_HOME="/root/.volta" RUN /root/.volta/bin/volta install node@${NODE_VERSION}
RUN ${VOLTA_HOME}/bin/volta install node@${NODE_VERSION} RUN /root/.volta/bin/volta install npm@${NPM_VERSION}
RUN ${VOLTA_HOME}/bin/volta install npm@${NPM_VERSION} RUN /root/.volta/bin/volta install yarn@${YARN_VERSION}
RUN ${VOLTA_HOME}/bin/volta install yarn@${YARN_VERSION} RUN /root/.volta/bin/volta install pnpm@${PNPM_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