We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c4f626 commit 2c655c9Copy full SHA for 2c655c9
.gitpod.Dockerfile
@@ -3,10 +3,11 @@ FROM gitpod/workspace-full
3
USER gitpod
4
5
# Update Rust to the latest version
6
-RUN rm -rf ~/.rustup && ~/.cargo/bin/rustup update stable
7
-
8
-# Set up wasm-pack and wasm32-unknown-unknown for rustpython_wasm
9
-RUN export PATH=$HOME/.cargo/bin:$PATH && \
+RUN rm -rf ~/.rustup && \
+ export PATH=$HOME/.cargo/bin:$PATH && \
+ rustup update stable && \
+ rustup component add rls && \
10
+ # Set up wasm-pack and wasm32-unknown-unknown for rustpython_wasm
11
curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh && \
12
rustup target add wasm32-unknown-unknown
13
0 commit comments