forked from Rust-related/RustPython
Add gitpod configuration
This commit is contained in:
13
.gitpod.Dockerfile
vendored
Normal file
13
.gitpod.Dockerfile
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
FROM gitpod/workspace-full
|
||||
|
||||
USER gitpod
|
||||
|
||||
# Update Rust to the latest version
|
||||
RUN rm -rf ~/.rustup && ~/.cargo/bin/rustup update stable
|
||||
|
||||
# Set up wasm-pack and wasm32-unknown-unknown for rustpython_wasm
|
||||
RUN export PATH=$HOME/.cargo/bin:$PATH && \
|
||||
curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh && \
|
||||
rustup target add wasm32-unknown-unknown
|
||||
|
||||
USER root
|
||||
2
.gitpod.yml
Normal file
2
.gitpod.yml
Normal file
@@ -0,0 +1,2 @@
|
||||
image:
|
||||
file: .gitpod.Dockerfile
|
||||
Reference in New Issue
Block a user