From 98221ab4cc9337da202c3cc3605cbce5ca495600 Mon Sep 17 00:00:00 2001 From: Antony Messerli Date: Mon, 23 Oct 2023 20:51:03 -0500 Subject: [PATCH] Update Dockerfile --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c7485d9..3c22202 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # static curl build FROM alpine:3.18 as curlstage -ARG VERSION="7.67.0" +ARG VERSION="8.4.0" RUN \ echo "**** install deps ****" && \ @@ -17,6 +17,7 @@ RUN \ cd curl-* && \ ./configure \ --disable-shared \ + --with-openssl \ --with-ca-fallback && \ make curl_LDFLAGS=-all-static && \ strip src/curl && \