Skip to content

Commit

Permalink
Merge pull request #51 from nbarkhina/update-devcontainer
Browse files Browse the repository at this point in the history
Update ubuntu template
  • Loading branch information
nbarkhina authored Jun 5, 2024
2 parents d9882cd + 7010b85 commit 4aacfde
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .devcontainer/Dockerfile
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

0 comments on commit 4aacfde

Please sign in to comment.