From 1e3a4487f33c8226c2d3b1b3ff70ff51b2ee73e8 Mon Sep 17 00:00:00 2001 From: neodiX Date: Thu, 27 Feb 2025 10:18:54 +0400 Subject: [PATCH] fix docker github build (Segmentation fault (core dumped) dpkg: error processing package libc-bin (--configure)) --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 61e18c0b..ba460794 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,6 @@ FROM ubuntu:22.04 AS builder RUN apt-get update && \ + DEBIAN_FRONTEND=noninteractive apt-get --reinstall install libc-bin \ DEBIAN_FRONTEND=noninteractive apt-get install -y build-essential cmake clang openssl libssl-dev zlib1g-dev gperf wget git ninja-build libsodium-dev libmicrohttpd-dev liblz4-dev pkg-config autoconf automake libtool libjemalloc-dev lsb-release software-properties-common gnupg RUN wget https://apt.llvm.org/llvm.sh && \