mirror of
https://github.com/serai-dex/serai.git
synced 2025-01-07 03:19:30 +00:00
7 lines
135 B
Text
7 lines
135 B
Text
|
FROM alpine:latest as image
|
||
|
|
||
|
COPY --from=mimalloc libmimalloc.so /usr/lib
|
||
|
ENV LD_PRELOAD=libmimalloc.so
|
||
|
|
||
|
RUN apk update && apk upgrade
|