From 46ee3d996b81d05704da9eb129837e70ee170ea6 Mon Sep 17 00:00:00 2001 From: Dennis Schubert Date: Sun, 27 Aug 2023 23:17:49 -0400 Subject: [PATCH] Build with Rust 1.72 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index cdc5c77..4223257 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM debian:bullseye as builder RUN apt-get update && \ apt-get install -y build-essential curl git && \ - curl https://sh.rustup.rs -sSf | sh -s -- -y --profile minimal --default-toolchain 1.71 + curl https://sh.rustup.rs -sSf | sh -s -- -y --profile minimal --default-toolchain 1.72 ENV PATH="/root/.cargo/bin:${PATH}" WORKDIR /app COPY . .