Skip to content

Commit

Permalink
rust 1.72.0
Browse files Browse the repository at this point in the history
Signed-off-by: kogeler <[email protected]>
  • Loading branch information
kogeler committed Aug 29, 2023
1 parent f5e9642 commit ddb4363
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ The scripts allow building a substrate node for amd64, aarch64(armv8 64bit) arch

```commandline
mkdir git
git clone https://github.com/paritytech/polkadot.git
git clone https://github.com/paritytech/polkadot-sdk.git git/polkadot-sdk
```

## Build Docker images
Expand All @@ -20,7 +20,7 @@ git clone https://github.com/paritytech/polkadot.git
## Build
```commandline
./run-env.sh bullseye amd64
cd /git/polkadot
cd /git/polkadot-sdk/polkadot
cargo build --release
exit
```
Expand Down
2 changes: 1 addition & 1 deletion build-env.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash

cd dockerfiles
docker build --pull --no-cache --file Dockerfile.${2} --build-arg "DEBIAN_VERSION=${1}" -t "rust-env-debian-${1}-${2}" .
docker build --load --pull --no-cache --file Dockerfile.${2} --build-arg "DEBIAN_VERSION=${1}" -t "rust-env-debian-${1}-${2}" .
2 changes: 1 addition & 1 deletion dockerfiles/Dockerfile.aarch64
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ ARG DEBIAN_VERSION=bullseye

FROM debian:$DEBIAN_VERSION-slim

ARG ENV RUST_STABLE_VERSION="1.71.0"
ARG ENV RUST_STABLE_VERSION="1.72.0"

# Set environment variables
ENV SHELL="/bin/bash"
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/Dockerfile.amd64
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ ARG DEBIAN_VERSION=bullseye
FROM debian:${DEBIAN_VERSION}-slim

ARG DEBIAN_VERSION=bullseye
ARG ENV RUST_STABLE_VERSION="1.71.0"
ARG ENV RUST_STABLE_VERSION="1.72.0"

# Set environment variables
ENV SHELL="/bin/bash"
Expand Down

0 comments on commit ddb4363

Please sign in to comment.