From 33f1d57a50f95c65fe46c1dead76448d8af90e95 Mon Sep 17 00:00:00 2001 From: Nikolai Rodionov Date: Sat, 1 Feb 2025 18:02:16 +0100 Subject: [PATCH] Make container build faster --- Containerfile | 2 -- 1 file changed, 2 deletions(-) diff --git a/Containerfile b/Containerfile index d57449d..440421c 100644 --- a/Containerfile +++ b/Containerfile @@ -1,6 +1,4 @@ FROM rust:1.84.1 AS lib_builder -RUN apt-get update -y && apt-get install -y gcc musl-dev build-essential pkg-config cmake -RUN rustup toolchain install stable WORKDIR /src COPY rust/ . RUN cargo build