Pin mimalloc to the commit hash for 2.1.2

This commit is contained in:
Luke Parker 2023-12-05 03:29:13 -05:00
parent 797ed49e7b
commit 6e9ce3ac4f
No known key found for this signature in database
2 changed files with 2 additions and 0 deletions

View file

@ -3,6 +3,7 @@ FROM alpine:latest as mimalloc
RUN apk update && apk upgrade && apk --no-cache add gcc g++ libc-dev make cmake git
RUN git clone https://github.com/microsoft/mimalloc && \
cd mimalloc && \
git checkout 43ce4bd7fd34bcc730c1c7471c99995597415488 && \
mkdir -p out/secure && \
cd out/secure && \
cmake -DMI_SECURE=ON ../.. && \

View file

@ -3,6 +3,7 @@ FROM debian:bookworm-slim as mimalloc
RUN apt update && apt upgrade -y && apt install -y gcc g++ make cmake git
RUN git clone https://github.com/microsoft/mimalloc && \
cd mimalloc && \
git checkout 43ce4bd7fd34bcc730c1c7471c99995597415488 && \
mkdir -p out/secure && \
cd out/secure && \
cmake -DMI_SECURE=ON ../.. && \