forked from QwikDev/qwik
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Pr local dev docker (QwikDev#5237)
- Loading branch information
1 parent
d3d9d2a
commit a4e816f
Showing
2 changed files
with
11 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,15 @@ | ||
FROM cimg/rust:1.65.0-node | ||
FROM cimg/rust:1.72.1-node | ||
|
||
RUN rustup toolchain install nightly-2022-09-23; \ | ||
rustup default nightly-2022-09-23; \ | ||
rustup --version; \ | ||
RUN rustup --version; \ | ||
cargo --version; \ | ||
rustc --version; \ | ||
rustup update; \ | ||
rustc --version; | ||
|
||
RUN rustup update; \ | ||
rustup target add wasm32-unknown-unknown; \ | ||
cargo install cargo-insta wasm-pack; \ | ||
cargo install cargo-insta; \ | ||
cargo install wasm-pack; \ | ||
rustup component add clippy; \ | ||
corepack enable --install-directory ~/bin | ||
|
||
RUN mkdir /home/circleci/store; \ | ||
pnpm config set store-dir /home/circleci/store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters