-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
GH-600: Add get_block_number GH-600: Address PR feedback GH-585: Experiment with adapting test for platform specific error codes GH-585: Provide Windows platform specific error code and message GH-600: Rebase master into branch
- Loading branch information
1 parent
2c78856
commit 8a01f3a
Showing
7 changed files
with
776 additions
and
330 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,13 +1,13 @@ | ||
FROM rust:stretch | ||
FROM rust:bullseye | ||
|
||
ARG uid | ||
ARG gid | ||
|
||
RUN (addgroup substratum --gid $gid || continue) \ | ||
&& adduser --disabled-password --uid $uid --gid $gid --home /home/substratum substratum \ | ||
&& chown -R $uid:$gid /home/substratum | ||
RUN (addgroup masq --gid $gid || continue) \ | ||
&& adduser --disabled-password --uid $uid --gid $gid --home /home/masq masq \ | ||
&& chown -R $uid:$gid /home/masq | ||
|
||
RUN apt-get update && apt-get install -y sudo curl && rustup component add rustfmt clippy \ | ||
&& cargo install sccache && chown -R $uid:$gid /usr/local/cargo /usr/local/rustup | ||
|
||
USER substratum | ||
USER masq |
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.