]> git.ipfire.org Git - thirdparty/FORT-validator.git/commitdiff
Update Docker
authorAlberto Leiva Popper <ydahhrk@gmail.com>
Fri, 1 Dec 2023 04:30:50 +0000 (22:30 -0600)
committerAlberto Leiva Popper <ydahhrk@gmail.com>
Fri, 1 Dec 2023 04:36:45 +0000 (22:36 -0600)
Alpine no longer supports libexecinfo...

docker/Dockerfile

index 1c251155b5647613fa193f8acf2e2737c1e567a6..cd4a146e5858c6aca74e8a759959128ad897c5c3 100644 (file)
@@ -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