From 046401148dec7e65074adfb46b9209b64c5d5d52 Mon Sep 17 00:00:00 2001 From: Yves Rutschle Date: Thu, 4 Jan 2024 23:04:26 +0100 Subject: [PATCH] add ./configure stage to docker build --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index cd22891..1354ebe 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,7 +16,7 @@ RUN apk add --no-cache \ COPY . /sslh -RUN make sslh-select && strip sslh-select +RUN ./configure && make sslh-select && strip sslh-select FROM docker.io/${TARGET_ARCH}/alpine:${ALPINE_VERSION}