From 25d870863077a70fa54e43bd5b9c871a698f502c Mon Sep 17 00:00:00 2001 From: "Dustin J. Mitchell" Date: Fri, 17 Apr 2026 07:54:11 -0400 Subject: [PATCH] Add an MSRV comment to Dockerfiles --- Dockerfile-postgres | 1 + Dockerfile-sqlite | 1 + 2 files changed, 2 insertions(+) diff --git a/Dockerfile-postgres b/Dockerfile-postgres index 1d3f67c..9a681bc 100644 --- a/Dockerfile-postgres +++ b/Dockerfile-postgres @@ -1,5 +1,6 @@ # Versions must be major.minor # Default versions are as below +# RUST_VERSION should match the MSRV in Cargo.toml. ARG RUST_VERSION=1.88 ARG ALPINE_VERSION=3.20 diff --git a/Dockerfile-sqlite b/Dockerfile-sqlite index cf72694..8457eb5 100644 --- a/Dockerfile-sqlite +++ b/Dockerfile-sqlite @@ -1,5 +1,6 @@ # Versions must be major.minor # Default versions are as below +# RUST_VERSION should match the MSRV in Cargo.toml. ARG RUST_VERSION=1.88 ARG ALPINE_VERSION=3.20