File tree Expand file tree Collapse file tree 2 files changed +10
-7
lines changed Expand file tree Collapse file tree 2 files changed +10
-7
lines changed Original file line number Diff line number Diff line change @@ -25,12 +25,12 @@ VOLUME /home/node/node.tar.xz
2525
2626USER node
2727
28- RUN cd "/home/node" && curl -LO https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-Linux-x86_64.sh \
29- && bash Miniforge3-Linux-x86_64.sh -b \
30- && rm Miniforge3-Linux-x86_64.sh
31- ENV PATH= "/home/node/miniforge3/bin:${PATH}"
32- RUN mamba install -y \
33- python=3.12 \
34- gxx=15
28+ ENV PATH= "/home/node/.local/bin:${PATH}"
29+
30+ RUN curl -L micro.mamba.pm/install.sh | bash -s -- -y \
31+ && eval "$(micromamba shell hook --shell bash)" \
32+ && micromamba install -y \
33+ python=3.12 \
34+ gxx=15
3535
3636ENTRYPOINT [ "/home/node/run.sh" ]
Original file line number Diff line number Diff line change @@ -35,6 +35,9 @@ cd "${nodeDir}"/deps/v8/src
3535
3636cd " ${nodeDir} "
3737
38+ eval " $( micromamba shell hook --shell bash) "
39+ micromamba activate
40+
3841export CC=" ccache gcc"
3942export CXX=" ccache g++"
4043export MAJOR_VERSION=$( echo ${fullversion} | cut -d . -f 1 | tr --delete v)
You can’t perform that action at this time.
0 commit comments