Downgrade Rust Docker images to 1.59 to fix CI failures (ref #2263) (#2274)

This commit is contained in:
Nutomic 2022-05-20 13:29:04 +00:00 committed by GitHub
parent 9ef0efa420
commit 7566f325cd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -1,4 +1,4 @@
ARG RUST_BUILDER_IMAGE=clux/muslrust:1.60.0
ARG RUST_BUILDER_IMAGE=clux/muslrust:1.59.0
FROM $RUST_BUILDER_IMAGE as chef
USER root

View file

@ -1,5 +1,5 @@
# Build the project
FROM clux/muslrust:1.60.0 as builder
FROM clux/muslrust:1.59.0 as builder
ARG CARGO_BUILD_TARGET=x86_64-unknown-linux-musl
ARG RUSTRELEASEDIR="release"