From 016ec85fea315d8806c5722aced3d38bfb062ffc Mon Sep 17 00:00:00 2001 From: Alberto Leiva Popper Date: Thu, 30 Nov 2023 22:30:50 -0600 Subject: [PATCH] Update Docker Alpine no longer supports libexecinfo... --- docker/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 1c251155..cd4a146e 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -4,7 +4,7 @@ ARG FORT_VERSION=1.6.0 # Install compiler and dependencies RUN apk --update --no-cache add build-base autoconf automake pkgconfig jansson-dev check-dev \ - openssl-dev openssl libexecinfo-dev bsd-compat-headers rsync wget curl-dev libxml2 libxml2-dev + openssl-dev openssl bsd-compat-headers rsync wget curl-dev libxml2 libxml2-dev # Download FORT source code WORKDIR /root @@ -20,7 +20,7 @@ RUN ./configure && make && make install FROM alpine:latest # Install dependencies -RUN apk --update --no-cache add openssl jansson rsync libexecinfo tini libxml2 libcurl +RUN apk --update --no-cache add openssl jansson rsync tini libxml2 libcurl # Install FORT COPY --from=builder /usr/local/bin/fort /usr/local/bin/fort -- 2.47.3