From d405b2dd28d25340158df20f7d96ec96f9325372 Mon Sep 17 00:00:00 2001 From: Ruakij Date: Sat, 22 Jun 2024 16:30:51 +0200 Subject: [PATCH] Update bandwhich --- tools/bandwhich/Dockerfile | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/tools/bandwhich/Dockerfile b/tools/bandwhich/Dockerfile index 21bb9f3..7ffcd95 100644 --- a/tools/bandwhich/Dockerfile +++ b/tools/bandwhich/Dockerfile @@ -4,14 +4,12 @@ WORKDIR /app # ---- Build ---- -FROM rust:1.65.0-slim AS build +FROM rust:1.79.0-slim AS build WORKDIR /build -# Install packages -RUN apt update && apt install -y make # Copy sources ADD .build/repository/ . -# Update dependencies and Compile -RUN cargo update && TARGET="release" make +# Compile +RUN cargo build --release # ---- Release ----