forked from e621ng/e621ng
[Docker] Use jemalloc
It's used in prod, should be done here too then. Alpine doesn't provide this package, so we'll need to compile it ourself. Confirmed working with `MALLOC_CONF=stats_print:true ruby -e "exit"`
This commit is contained in:
parent
f6e4400f67
commit
8c6fb41933
@ -4,8 +4,13 @@ FROM ruby:2.7.3-alpine
|
||||
RUN apk --no-cache add nodejs yarn postgresql-client ffmpeg vips tzdata \
|
||||
git build-base postgresql-dev glib-dev
|
||||
|
||||
# Nice to have packages
|
||||
RUN apk --no-cache add nano sudo bash
|
||||
RUN wget -O - https://github.com/jemalloc/jemalloc/releases/download/5.2.1/jemalloc-5.2.1.tar.bz2 | tar -xj && \
|
||||
cd jemalloc-5.2.1 && \
|
||||
./configure && \
|
||||
make && \
|
||||
make install
|
||||
|
||||
ENV LD_PRELOAD=/usr/local/lib/libjemalloc.so.2
|
||||
|
||||
# Install js packages and gems
|
||||
COPY package.json yarn.lock ./
|
||||
|
Loading…
Reference in New Issue
Block a user