-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: use [email protected] in dev setup (#4475)
Refs #4033
- Loading branch information
Showing
10 changed files
with
31 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
ARG VARIANT="20-bookworm" | ||
ARG VARIANT="22-bookworm" | ||
FROM mcr.microsoft.com/vscode/devcontainers/javascript-node:1-${VARIANT} | ||
|
||
# Install 20.18.0 version of Node.js using nvm | ||
ARG EXTRA_NODE_VERSION="20.18.0" | ||
# Install 22.11.0 version of Node.js using nvm | ||
ARG EXTRA_NODE_VERSION="22.11.0" | ||
RUN su node -c "source /usr/local/share/nvm/nvm.sh && nvm install ${EXTRA_NODE_VERSION}" | ||
|
||
## install emscripten | ||
WORKDIR /home/node | ||
RUN su node -c "git clone --depth 1 --branch 2.0.24 https://github.com/emscripten-core/emsdk.git" | ||
RUN su node -c "git clone --depth 1 --branch 3.1.64 https://github.com/emscripten-core/emsdk.git" | ||
WORKDIR emsdk | ||
RUN su node -c "./emsdk install 2.0.24" | ||
RUN su node -c "./emsdk activate 2.0.24" | ||
RUN su node -c "./emsdk install 3.1.64" | ||
RUN su node -c "./emsdk activate 3.1.64" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
20.18.0 | ||
22.11.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters