From 57378424101a26dc270b3df6e3ed5c8988a203ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Sun, 18 Dec 2022 16:16:00 +0200 Subject: [PATCH] chore: Use `rust:bullseye` as Docker builder Use `bullseye` explicitly to make the correspondence with the final image clear, and remove explicit Rust version as it does not seem that important, and the final runtime image version is what it is at the time too. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5c8bc4d63..7db315d6a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM rust:1.65.0 as builder +FROM rust:bullseye as builder WORKDIR /usr/src/typos COPY . . RUN cargo install --path .