-
Notifications
You must be signed in to change notification settings - Fork 104
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add CARGO_HOME and simplify Gitpod Dockerfile #98
Conversation
This reverts commit f8ffeeb.
.gitpod.Dockerfile
Outdated
RUN bash -cl "rustup toolchain install stable && rustup target add wasm32-unknown-unknown" | ||
ENV CARGO_HOME=/home/gitpod/.cargo | ||
|
||
RUN bash -cl "rustup default stable-2020-10-08-x86_64-unknown-linux-gnu && rustup target add wasm32-unknown-unknown" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it looks like we default to stable-2020-10-08
since we specify it in the rust-toolchain
file. Should we upgrade it to latest stable? But otherwise everything else looks fine
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great comments, thanks! Pushed up some changes
Phuong discovered an env var that seems like it needs to be set for Gitpod now