Use lastest 1.xx Rust version in Docker build

With the previous Rust version 1.61, the build fails with

> error[E0658]: use of unstable library feature 'scoped_threads'

This has been "stabilized" in Rust 1.63. To avoid the hassle
of manually updating the version, we can just default to the
latest minor release.
This commit is contained in:
Niklas Gruhn
2023-01-18 19:08:19 +01:00
parent f9e3bdb6b0
commit f8e6e0252d

View File

@@ -1,5 +1,5 @@
# See https://github.com/LukeMathWalker/cargo-chef
ARG RUST_VERSION=1.61-buster
ARG RUST_VERSION=1-buster
FROM rust:${RUST_VERSION} as planner
WORKDIR /scryer-prolog
RUN cargo install cargo-chef