Skip to content

Commit d44542f

Browse files
authored
feat: test out sab and radarr with mimalloc (#403)
1 parent 57a6698 commit d44542f

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

apps/radarr/Dockerfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ ARG TARGETARCH
55
ARG VENDOR
66
ARG VERSION
77

8+
ENV LD_PRELOAD=/usr/lib/libmimalloc.so.2 \
9+
MIMALLOC_LARGE_OS_PAGES=1
10+
811
ENV UMASK="0002" \
912
TZ="Etc/UTC"
1013

@@ -24,6 +27,7 @@ RUN \
2427
icu-libs \
2528
jq \
2629
libintl \
30+
mimalloc2 \
2731
nano \
2832
sqlite-libs \
2933
tzdata \

apps/sabnzbd/Dockerfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
FROM docker.io/library/python:3.13-alpine
44
ARG VERSION
55

6+
ENV LD_PRELOAD=/usr/lib/libmimalloc.so.2 \
7+
MIMALLOC_LARGE_OS_PAGES=1
8+
69
ENV UMASK="0002" \
710
TZ="Etc/UTC"
811

@@ -29,6 +32,7 @@ RUN \
2932
coreutils \
3033
curl \
3134
jq \
35+
mimalloc2 \
3236
nano \
3337
p7zip \
3438
tzdata \

0 commit comments

Comments
 (0)