File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -6,17 +6,17 @@ FROM $IMAGE
66ENV RUSTUP_HOME=/usr/local/rustup \
77 CARGO_HOME=/usr/local/cargo \
88 PATH=/usr/local/cargo/bin:$PATH \
9- RUST_VERSION=1.85.1
9+ RUST_VERSION=1.88.0
1010
1111# Install Rust
1212RUN set -eux; \
1313 arch="$(arch)" ; \
1414 case "${arch##*-}" in \
15- x86_64) rustArch='x86_64-unknown-linux-gnu' ; rustupSha256='0b2f6c8f85a3d02fde2efc0ced4657869d73fccfce59defb4e8d29233116e6db ' ;; \
16- aarch64) rustArch='aarch64-unknown-linux-gnu' ; rustupSha256='673e336c81c65e6b16dcdede33f4cc9ed0f08bde1dbe7a935f113605292dc800 ' ;; \
15+ x86_64) rustArch='x86_64-unknown-linux-gnu' ; rustupSha256='20a06e644b0d9bd2fbdbfd52d42540bdde820ea7df86e92e533c073da0cdd43c ' ;; \
16+ aarch64) rustArch='aarch64-unknown-linux-gnu' ; rustupSha256='e3853c5a252fca15252d07cb23a1bdd9377a8c6f3efa01531109281ae47f841c ' ;; \
1717 *) echo >&2 "unsupported architecture: ${arch}" ; exit 1 ;; \
1818 esac; \
19- url="https://static.rust-lang.org/rustup/archive/1.26.0 /${rustArch}/rustup-init" ; \
19+ url="https://static.rust-lang.org/rustup/archive/1.28.2 /${rustArch}/rustup-init" ; \
2020 curl "$url" -o "rustup-init" ; \
2121 echo "${rustupSha256} *rustup-init" | sha256sum -c -; \
2222 chmod +x rustup-init; \
You can’t perform that action at this time.
0 commit comments