From ebb7d4c3094003264888d31dbe7a8831b628c9a9 Mon Sep 17 00:00:00 2001 From: Warm Beer Date: Thu, 21 Dec 2023 10:50:27 +0100 Subject: [PATCH] chore: make Containerfile use nightly rust --- Containerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Containerfile b/Containerfile index 8ea555c2..77c7da66 100644 --- a/Containerfile +++ b/Containerfile @@ -3,13 +3,13 @@ # Torrust Tracker ## Builder Image -FROM rust:bookworm as chef +FROM rustlang/rust:nightly-bookworm as chef WORKDIR /tmp RUN curl -L --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/cargo-bins/cargo-binstall/main/install-from-binstall-release.sh | bash RUN cargo binstall --no-confirm cargo-chef cargo-nextest ## Tester Image -FROM rust:slim-bookworm as tester +FROM rustlang/rust:nightly-bookworm-slim as tester WORKDIR /tmp RUN apt-get update; apt-get install -y curl sqlite3; apt-get autoclean