From adb48cd7374910ad0b89de3c8c47f03e0b036f16 Mon Sep 17 00:00:00 2001 From: Luke Parker Date: Sun, 6 Aug 2023 10:10:38 -0400 Subject: [PATCH] Use 1.71.1 for reproducible runtime 1.71.1 fixes a CVE which wasn't at risk here yet still should be resolved. --- orchestration/runtime/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/orchestration/runtime/Dockerfile b/orchestration/runtime/Dockerfile index 7e6de055..b690a9a4 100644 --- a/orchestration/runtime/Dockerfile +++ b/orchestration/runtime/Dockerfile @@ -1,4 +1,4 @@ -FROM rust:1.71.0-slim-bookworm as builder +FROM rust:1.71.1-slim-bookworm as builder # Add files for build ADD common /serai/common