-
Notifications
You must be signed in to change notification settings - Fork 133
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #51 from nbarkhina/update-devcontainer
Update ubuntu template
- Loading branch information
Showing
1 changed file
with
4 additions
and
3 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,10 +1,11 @@ | ||
|
||
FROM mcr.microsoft.com/devcontainers/base:ubuntu-18.04 | ||
# https://mcr.microsoft.com/en-us/product/devcontainers/base/tags | ||
# NOTE: Ubuntu 24 doesn't have python anymore | ||
FROM mcr.microsoft.com/devcontainers/base:ubuntu-22.04 | ||
|
||
RUN git clone https://github.com/emscripten-core/emsdk.git \ | ||
&& cd emsdk \ | ||
&& ./emsdk install 2.0.7 \ | ||
&& ./emsdk activate 2.0.7 \ | ||
&& echo 'source "/emsdk/emsdk_env.sh"\n' >> /home/vscode/.bashrc \ | ||
&& echo 'cd code\n' >> /home/vscode/.bashrc \ | ||
&& echo 'echo "" && echo "Type 'make' to build N64Wasm"\n' >> /home/vscode/.bashrc | ||
&& echo 'echo "" && echo "Type 'make' to build N64Wasm"\n' >> /home/vscode/.bashrc |