-
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.
- Loading branch information
Showing
2 changed files
with
9 additions
and
4 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,5 +1,10 @@ | ||
FROM btwiuse/arch:rust-nightly AS builder | ||
FROM btwiuse/arch:rust AS builder | ||
|
||
RUN git clone https://github.com/gear-tech/gear /gear | ||
RUN pacman -Syu --noconfirm --needed binaryen yarn npm deno | ||
|
||
RUN npm install --force -g sails-js | ||
|
||
RUN cargo install --root /usr/local cargo-generate cargo-gbuild cargo-expand sails-cli | ||
|
||
RUN curl -#L https://gear-builds.s3.amazonaws.com/gear-v1.7.0-1-x86_64-unknown-linux-gnu.tar.xz | tar -xJC /usr/bin | ||
|
||
WORKDIR /gear |
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,5 +1,5 @@ | ||
[toolchain] | ||
channel = "nightly-2022-10-11" | ||
channel = "stable" | ||
components = [ "rustfmt", "clippy" ] | ||
targets = [ "wasm32-unknown-unknown" ] | ||
profile = "minimal" |