From 64113e95148f29485d2b5c49e6f687e4b09526b1 Mon Sep 17 00:00:00 2001 From: Ruakij Date: Wed, 23 Nov 2022 21:13:59 +0100 Subject: [PATCH] Fix using wrong packet-manager --- tools/bandwhich/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/bandwhich/Dockerfile b/tools/bandwhich/Dockerfile index ddb99a6..4ff7cc8 100644 --- a/tools/bandwhich/Dockerfile +++ b/tools/bandwhich/Dockerfile @@ -7,7 +7,7 @@ WORKDIR /app FROM rust:1.65.0-slim AS build WORKDIR /build # Install packages -RUN apk add --no-cache make libc-dev build-base +RUN apt update && apt install -y make # Copy sources ADD .build/repository/ . # Update dependencies and Compile