From 9b2f018be615400ed78befdcdd6649e8b815fa8d Mon Sep 17 00:00:00 2001 From: Florent Daigniere Date: Tue, 15 Nov 2022 09:09:47 +0100 Subject: [PATCH] add --no-cache --- core/base/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/base/Dockerfile b/core/base/Dockerfile index 8e25d428..683f718f 100644 --- a/core/base/Dockerfile +++ b/core/base/Dockerfile @@ -17,7 +17,7 @@ RUN set -euxo pipefail \ ; if [[ "${machine}" == x86_64 || "${machine}" == armv8* || "${machine}" == aarch64 ]] \ ; then \ echo "Installing hardened-malloc" \ - ; apk add --repository=http://dl-cdn.alpinelinux.org/alpine/edge/testing hardened-malloc \ + ; apk add --no-cache --repository=http://dl-cdn.alpinelinux.org/alpine/edge/testing hardened-malloc \ ; else \ echo "Faking the install of hardened-malloc" \ ; cp /lib/ld-musl-${machine}.so.1 /usr/lib/libhardened_malloc.so \