From f99d2ef15d64643c89dead3a1952992890089a91 Mon Sep 17 00:00:00 2001 From: dgburr Date: Mon, 8 Jan 2024 18:27:33 +0100 Subject: [PATCH] Bump docker image used for rust build to 1.65 (#1396) This solves the following error message: error: failed to compile `sbp2json v5.0.4-alpha (https://github.com/swift-nav/libsbp.git#b9860dc1)`, intermediate artifacts can be found at `/tmp/cargo-installVrmlST` Caused by: package `regex v1.10.2` cannot be built because it requires rustc 1.65 or newer, while the currently active rustc version is 1.61.0 --- rust/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/Dockerfile b/rust/Dockerfile index 3b7d15a511..5c668148d4 100644 --- a/rust/Dockerfile +++ b/rust/Dockerfile @@ -1,4 +1,4 @@ -FROM rust:1.61-slim-buster +FROM rust:1.65-slim-buster ARG DEBIAN_FRONTEND=noninterative