mirror of
https://github.com/certd/certd.git
synced 2026-04-03 14:10:54 +08:00
8 lines
246 B
Docker
8 lines
246 B
Docker
|
|
FROM node:22-alpine AS builder
|
||
|
|
|
||
|
|
RUN apk add build-base
|
||
|
|
RUN wget -O - https://github.com/jemalloc/jemalloc/releases/download/5.3.0/jemalloc-5.3.0.tar.bz2 | tar -xj && \
|
||
|
|
cd jemalloc-5.3.0 && \
|
||
|
|
./configure && \
|
||
|
|
make && \
|
||
|
|
make install
|