From a03f3ab9557ea3d2a7f670e9d211279962f70ef7 Mon Sep 17 00:00:00 2001 From: Wonderfall Date: Wed, 2 Jun 2021 03:29:23 +0200 Subject: [PATCH] disable CONFIG_NATIVE for hmalloc --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 05dea01..28d4c7b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,12 +25,13 @@ ARG ALPINE_VERSION FROM alpine:${ALPINE_VERSION} as build-malloc ARG HARDENED_MALLOC_VERSION +ARG CONFIG_NATIVE=false RUN apk --no-cache add build-base git gnupg && cd /tmp \ && wget -q https://github.com/thestinger.gpg && gpg --import thestinger.gpg \ && git clone --depth 1 --branch ${HARDENED_MALLOC_VERSION} https://github.com/GrapheneOS/hardened_malloc \ && cd hardened_malloc && git verify-tag $(git describe --tags) \ - && make + && make CONFIG_NATIVE=${CONFIG_NATIVE} ### Build GNU Libiconv (needed for nokogiri)