Skip to content

Commit 2c655c9

Browse files
authored
Install rls in .gitpod.Dockerfile
1 parent 7c4f626 commit 2c655c9

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.gitpod.Dockerfile

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,11 @@ FROM gitpod/workspace-full
33
USER gitpod
44

55
# 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 && \
6+
RUN rm -rf ~/.rustup && \
7+
export PATH=$HOME/.cargo/bin:$PATH && \
8+
rustup update stable && \
9+
rustup component add rls && \
10+
# Set up wasm-pack and wasm32-unknown-unknown for rustpython_wasm
1011
curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh && \
1112
rustup target add wasm32-unknown-unknown
1213

0 commit comments

Comments
 (0)