Skip to content

Commit

Permalink
remove mentions of nightly
Browse files Browse the repository at this point in the history
  • Loading branch information
Schaeff committed Apr 13, 2023
1 parent e9c27b4 commit f1ec28f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions dev.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM rustlang/rust:nightly
FROM rust:latest

RUN useradd -u 1000 -m zokrates

COPY ./scripts/install_foundry_deb.sh /tmp/
RUN /tmp/install_foundry_deb.sh
COPY ./scripts/install_foundry.sh /tmp/
RUN /tmp/install_foundry.sh

USER zokrates

Expand Down
2 changes: 1 addition & 1 deletion zokrates_book/src/gettingstarted.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ You can build ZoKrates from [source](https://github.com/ZoKrates/ZoKrates/) with
git clone https://github.com/ZoKrates/ZoKrates
cd ZoKrates
export ZOKRATES_STDLIB=$PWD/zokrates_stdlib/stdlib
cargo +nightly build -p zokrates_cli --release
cargo build -p zokrates_cli --release
cd target/release
```

Expand Down

0 comments on commit f1ec28f

Please sign in to comment.