From d0b55d0b5017c30daa14e74be29b26e98483e8ff Mon Sep 17 00:00:00 2001 From: John Cairns Date: Tue, 29 Oct 2024 11:46:26 -0500 Subject: [PATCH] =?UTF-8?q?fix:=20put=20back=20build-essential=20?= =?UTF-8?q?=F0=9F=A4=B7=E2=80=8D=E2=99=80=EF=B8=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 24c6f53..7177bb7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,19 +15,18 @@ ARG TARGETARCH RUN export DEBIAN_FRONTEND=noninteractive && \ apt-get update && \ apt-get install -y -q --no-install-recommends \ + build-essential \ ca-certificates \ cmake \ clang \ curl \ git \ gnupg2 \ - libc6-dev \ libclang-dev \ libssl-dev \ libudev-dev \ linux-headers-${TARGETARCH} \ llvm \ - make \ openssl \ pkg-config \ protobuf-compiler \ @@ -63,6 +62,7 @@ FROM debian:stable-slim RUN export DEBIAN_FRONTEND=noninteractive && \ apt-get update && \ apt-get install -y -q --no-install-recommends \ + build-essential \ ca-certificates \ curl \ git \